summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/test/TEATest.java
blob: 98b0ec9a62b56091efc9fe1fa23cd71f94dae44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.bouncycastle.crypto.test;

import org.bouncycastle.crypto.engines.TEAEngine;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.util.encoders.Hex;
import org.bouncycastle.util.test.SimpleTest;

/**
 * TEA tester - based on C implementation results from http://www.simonshepherd.supanet.com/tea.htm
 */
public class TEATest
    extends CipherTest
{
    static SimpleTest[]  tests = {
        new BlockCipherVectorTest(0, new TEAEngine(),
            new KeyParameter(Hex.decode("00000000000000000000000000000000")),
            "0000000000000000",
            "41ea3a0a94baa940"),
        new BlockCipherVectorTest(1, new TEAEngine(),
            new KeyParameter(Hex.decode("00000000000000000000000000000000")),
            "0102030405060708",
            "6a2f9cf3fccf3c55"),
        new BlockCipherVectorTest(2, new TEAEngine(),
            new KeyParameter(Hex.decode("0123456712345678234567893456789A")),
            "0000000000000000",
            "34e943b0900f5dcb"),
        new BlockCipherVectorTest(3, new TEAEngine(),
            new KeyParameter(Hex.decode("0123456712345678234567893456789A")),
            "0102030405060708",
            "773dc179878a81c0"),
            };

    TEATest()
    {
        super(tests, new TEAEngine(), new KeyParameter(new byte[16]));
    }

    public String getName()
    {
        return "TEA";
    }

    public static void main(
        String[]    args)
    {
        runTest(new TEATest());
    }
}