if (modeName.length() != 3)
{
int wordSize = Integer.parseInt(modeName.substring(3));
cipher = new PaddedBufferedBlockCipher(
new CFBBlockCipher(baseEngine, wordSize));
}
else
{
cipher = new PaddedBufferedBlockCipher(
new CFBBlockCipher(baseEngine, 8 * baseEngine.getBlockSize()));
}
}
else if (modeName.startsWith("PGP"))
{
if (modeName.equalsIgnoreCase("PGPCFBwithIV"))