我正在研究 Twofish 加密,并研究了类似下面的代码。
但是,我一直收到上述错误。
请帮助调查它并在必要时提供建议。
SecureRandom sr= new SecureRandom(cipher_key.getBytes());
KeyGenerator kg=KeyGenerator.getInstance("twofish");
kg.init(sr);
SecretKey sk = kg.generateKey();
// create an instance of cipher
Cipher cipher = Cipher.getInstance("twofish");
// initialize the cipher with the key
cipher.init(Cipher.ENCRYPT_MODE, sk);
// enctypt!
encrypted = cipher.doFinal(word.getBytes());