aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/XTEATest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/XTEATest.java')
-rw-r--r--libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/XTEATest.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/XTEATest.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/XTEATest.java
deleted file mode 100644
index 74da43bed..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/XTEATest.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package org.spongycastle.crypto.test;
-
-import org.spongycastle.crypto.engines.XTEAEngine;
-import org.spongycastle.crypto.params.KeyParameter;
-import org.spongycastle.util.encoders.Hex;
-import org.spongycastle.util.test.SimpleTest;
-
-/**
- * TEA tester - based on C implementation results from http://www.simonshepherd.supanet.com/tea.htm
- */
-public class XTEATest
- extends CipherTest
-{
- static SimpleTest[] tests = {
- new BlockCipherVectorTest(0, new XTEAEngine(),
- new KeyParameter(Hex.decode("00000000000000000000000000000000")),
- "0000000000000000",
- "dee9d4d8f7131ed9"),
- new BlockCipherVectorTest(1, new XTEAEngine(),
- new KeyParameter(Hex.decode("00000000000000000000000000000000")),
- "0102030405060708",
- "065c1b8975c6a816"),
- new BlockCipherVectorTest(2, new XTEAEngine(),
- new KeyParameter(Hex.decode("0123456712345678234567893456789A")),
- "0000000000000000",
- "1ff9a0261ac64264"),
- new BlockCipherVectorTest(3, new XTEAEngine(),
- new KeyParameter(Hex.decode("0123456712345678234567893456789A")),
- "0102030405060708",
- "8c67155b2ef91ead"),
- };
-
- XTEATest()
- {
- super(tests, new XTEAEngine(), new KeyParameter(new byte[16]));
- }
-
- public String getName()
- {
- return "XTEA";
- }
-
- public static void main(
- String[] args)
- {
- runTest(new XTEATest());
- }
-}