public void testRoundTripEncryptionBlowfishWithKeyFactory() throws Exception
{
SecretKeyEncryptionStrategy ske = new SecretKeyEncryptionStrategy();
ske.setAlgorithm("Blowfish");
ske.setKeyFactory(new SecretKeyFactory()
{
public byte[] getKey()
{
return "shhhh".getBytes();
}