org.bouncycastle.crypto.test.SerpentTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4.
package org.bouncycastle.crypto.test;
import org.bouncycastle.crypto.engines.SerpentEngine;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.util.encoders.Hex;
import org.bouncycastle.util.test.SimpleTest;
/**
*/
public class SerpentTest
extends CipherTest
{
static SimpleTest[] tests =
{
new BlockCipherVectorTest(0, new SerpentEngine(),
new KeyParameter(Hex.decode("0000000000000000000000000000000000000000000000000000000000000000")),
"00000000000000000000000000000000", "8910494504181950f98dd998a82b6749"),
new BlockCipherVectorTest(1, new SerpentEngine(),
new KeyParameter(Hex.decode("00000000000000000000000000000000")),
"80000000000000000000000000000000", "10b5ffb720b8cb9002a1142b0ba2e94a"),
new BlockCipherVectorTest(2, new SerpentEngine(),
new KeyParameter(Hex.decode("00000000000000000000000000000000")),
"00000000008000000000000000000000", "4f057a42d8d5bd9746e434680ddcd5e5"),
new BlockCipherVectorTest(3, new SerpentEngine(),
new KeyParameter(Hex.decode("00000000000000000000000000000000")),
"00000000000000000000400000000000", "99407bf8582ef12550886ef5b6f169b9"),
new BlockCipherVectorTest(4, new SerpentEngine(),
new KeyParameter(Hex.decode("000000000000000000000000000000000000000000000000")),
"40000000000000000000000000000000", "d522a3b8d6d89d4d2a124fdd88f36896"),
new BlockCipherVectorTest(5, new SerpentEngine(),
new KeyParameter(Hex.decode("000000000000000000000000000000000000000000000000")),
"00000000000200000000000000000000", "189b8ec3470085b3da97e82ca8964e32"),
new BlockCipherVectorTest(6, new SerpentEngine(),
new KeyParameter(Hex.decode("000000000000000000000000000000000000000000000000")),
"00000000000000000000008000000000", "f77d868cf760b9143a89809510ccb099"),
new BlockCipherVectorTest(7, new SerpentEngine(),
new KeyParameter(Hex.decode("0000000000000000000000000000000000000000000000000000000000000000")),
"08000000000000000000000000000000", "d43b7b981b829342fce0e3ec6f5f4c82"),
new BlockCipherVectorTest(8, new SerpentEngine(),
new KeyParameter(Hex.decode("0000000000000000000000000000000000000000000000000000000000000000")),
"00000000000000000100000000000000", "0bf30e1a0c33ccf6d5293177886912a7"),
new BlockCipherVectorTest(9, new SerpentEngine(),
new KeyParameter(Hex.decode("0000000000000000000000000000000000000000000000000000000000000000")),
"00000000000000000000000000000001", "6a7f3b805d2ddcba49b89770ade5e507"),
new BlockCipherVectorTest(10, new SerpentEngine(),
new KeyParameter(Hex.decode("80000000000000000000000000000000")),
"00000000000000000000000000000000", "49afbfad9d5a34052cd8ffa5986bd2dd"),
new BlockCipherVectorTest(11, new SerpentEngine(),
new KeyParameter(Hex.decode("000000000000000000000000004000000000000000000000")),
"00000000000000000000000000000000", "ba8829b1de058c4b48615d851fc74f17"),
new BlockCipherVectorTest(12, new SerpentEngine(),
new KeyParameter(Hex.decode("0000000000000000000000000000000000000000000000000000000100000000")),
"00000000000000000000000000000000", "89f64377bf1e8a46c8247044e8056a98"),
/*
new BlockCipherMonteCarloTest(13, 10000, new SerpentEngine(),
new KeyParameter(Hex.decode("47f5f881daab9b67b43bd1342e339c19")),
"7a4f7db38c52a8b711b778a38d203b6b", "003380e19f10065740394f48e2fe80b7"),
*/
new BlockCipherMonteCarloTest(13, 100, new SerpentEngine(),
new KeyParameter(Hex.decode("47f5f881daab9b67b43bd1342e339c19")),
"7a4f7db38c52a8b711b778a38d203b6b", "4db75303d815c2f7cc6ca935d1c5a046"),
/*
new BlockCipherMonteCarloTest(14, 10000, new SerpentEngine(),
new KeyParameter(Hex.decode("31fba879ebc5e80df35e6fa33eaf92d6")),
"70a05e12f74589009692a337f53ff614", "afb5425426906db26b70bdf842ac5400"),
*/
new BlockCipherMonteCarloTest(14, 100, new SerpentEngine(),
new KeyParameter(Hex.decode("31fba879ebc5e80df35e6fa33eaf92d6")),
"70a05e12f74589009692a337f53ff614", "fc53a50f4d3bc9836001893d2f41742d"),
/*
new BlockCipherMonteCarloTest(15, 10000, new SerpentEngine(),
new KeyParameter(Hex.decode("bde6dd392307984695aee80e574f9977caae9aa78eda53e8")),
"9cc523d034a93740a0aa4e2054bb34d8", "1949d506ada7de1f1344986e8ea049b2"),
*/
new BlockCipherMonteCarloTest(15, 100, new SerpentEngine(),
new KeyParameter(Hex.decode("bde6dd392307984695aee80e574f9977caae9aa78eda53e8")),
"9cc523d034a93740a0aa4e2054bb34d8", "77117e6a9e80f40b2a36b7d755573c2d"),
/*
new BlockCipherMonteCarloTest(16, 10000, new SerpentEngine(),
new KeyParameter(Hex.decode("60f6f8ad4290699dc50921a1bbcca92da914e7d9cf01a9317c79c0af8f2487a1")),
"ee1a61106fae2d381d686cbf854bab65", "e57f45559027cb1f2ed9603d814e1c34"),
*/
new BlockCipherMonteCarloTest(16, 100, new SerpentEngine(),
new KeyParameter(Hex.decode("60f6f8ad4290699dc50921a1bbcca92da914e7d9cf01a9317c79c0af8f2487a1")),
"ee1a61106fae2d381d686cbf854bab65", "dcd7f13ea0dcdfd0139d1a42e2ffb84b")
};
SerpentTest()
{
super(tests, new SerpentEngine(), new KeyParameter(new byte[32]));
}
public String getName()
{
return "Serpent";
}
public static void main(
String[] args)
{
runTest(new SerpentTest());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy