文字列を受け取り、文字列のエンコードされた値を CAST-256 で返す関数を実装しようとしています。次のコードは、BoncyCastle の公式 Web ページ ( http://www.bouncycastle.org/specifications.html、ポイント 4.1) の例に従って実装したものです。
import org.bouncycastle.crypto.BufferedBlockCipher;
import org.bouncycastle.crypto.CryptoException;
import org.bouncycastle.crypto.engines.CAST6Engine;
import org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.bouncycastle.util.encoders.Base64;
public class Test {
static{
Security.addProvider(new BouncyCastleProvider());
}
public static final String UTF8 = "utf-8";
public static final String KEY = "CLp4j13gADa9AmRsqsXGJ";
public static byte[] encrypt(String inputString) throws UnsupportedEncodingException {
final BufferedBlockCipher cipher = new PaddedBufferedBlockCipher(new CAST6Engine());
byte[] key = KEY.getBytes(UTF8);
byte[] input = inputString.getBytes(UTF8);
cipher.init(true, new KeyParameter(key));
byte[] cipherText = new byte[cipher.getOutputSize(input.length)];
int outputLen = cipher.processBytes(input, 0, input.length, cipherText, 0);
try {
cipher.doFinal(cipherText, outputLen);
} catch (CryptoException ce) {
System.err.println(ce);
System.exit(1);
}
return cipherText;
}
public static void main(String[] args) throws UnsupportedEncodingException {
final String toEncrypt = "hola";
final String encrypted = new String(Base64.encode(test(toEncrypt)),UTF8);
System.out.println(encrypted);
}
}
しかし、コードを実行すると、
QUrYzMVlbx3OK6IKXWq1ng==
同じキーを使用してCAST-256でエンコードする場合( http://www.tools4noobs.com/online_tools/encrypt/hola
が必要な場合はこちらを試してください)、取得する必要があります
w5nZSYEyA8HuPL5V0J29Yg==
.
何が起こっている?なぜ間違った暗号化文字列を取得するのですか?
インターネットでそれを見つけるのにうんざりしていて、答えが見つかりませんでした。