String seedValue = "This Is MySecure";
String normalText = "Password";
normalTextEnc = AESHelper.encrypt(seedValue, normalText);
System.out.println("encrypt"+normalTextEnc);
Когда я снова запустил этот код, он дает мне другой зашифрованный текст. Как я могу получить тот же зашифрованный текст?Как получить тот же зашифрованный текст?
См http://stackoverflow.com/questions/24701068/what-makes-aes-with-base64-generate-different-encryption-result-for-the-same-pla – squeeish