com.fitbur.bouncycastle.crypto.test.BlowfishTest Maven / Gradle / Ivy
package com.fitbur.bouncycastle.crypto.test;
import com.fitbur.bouncycastle.crypto.engines.BlowfishEngine;
import com.fitbur.bouncycastle.crypto.params.KeyParameter;
import com.fitbur.bouncycastle.util.encoders.Hex;
import com.fitbur.bouncycastle.util.test.SimpleTest;
/**
* blowfish tester - vectors from http://www.counterpane.com.fitbur/vectors.txt
*/
public class BlowfishTest
extends CipherTest
{
static SimpleTest[] tests =
{
new BlockCipherVectorTest(0, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("0000000000000000")),
"0000000000000000", "4EF997456198DD78"),
new BlockCipherVectorTest(1, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("FFFFFFFFFFFFFFFF")),
"FFFFFFFFFFFFFFFF", "51866FD5B85ECB8A"),
new BlockCipherVectorTest(2, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("3000000000000000")),
"1000000000000001", "7D856F9A613063F2"),
new BlockCipherVectorTest(3, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("1111111111111111")),
"1111111111111111", "2466DD878B963C9D"),
new BlockCipherVectorTest(4, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("0123456789ABCDEF")),
"1111111111111111", "61F9C3802281B096"),
new BlockCipherVectorTest(5, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("FEDCBA9876543210")),
"0123456789ABCDEF", "0ACEAB0FC6A0A28D"),
new BlockCipherVectorTest(6, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("7CA110454A1A6E57")),
"01A1D6D039776742", "59C68245EB05282B"),
new BlockCipherVectorTest(7, new BlowfishEngine(),
new KeyParameter(Hex.com.fitburcode("0131D9619DC1376E")),
"5CD54CA83DEF57DA", "B1B8CC0B250F09A0"),
};
BlowfishTest()
{
super(tests, new BlowfishEngine(), new KeyParameter(new byte[16]));
}
public String getName()
{
return "Blowfish";
}
public static void main(
String[] args)
{
runTest(new BlowfishTest());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy