如何获得相同的密文?

How can I get the same encrypted text?

 String seedValue = "This Is MySecure";

 String normalText = "Password";

 normalTextEnc = AESHelper.encrypt(seedValue, normalText);

 System.out.println("encrypt"+normalTextEnc);

当我再次 运行 这段代码时,它给了我另一个加密文本。 我怎样才能得到相同的加密文本??

看看这个。 encrypt 函数将使用密码 "key" 加密消息 "This is the MESSAGE"。然后我们使用相同的密码在 decrypt 函数中解密加密的消息。您可以通过此 link 了解更多信息。 https://trivedihardik.wordpress.com/tag/android-aes-example/

        String encryptedData = AESHelper.encrypt("key", "This is the MESSAGE");
        System.out.println("Encoded String " + encryptedData);
        String decryptedData = AESHelper.decrypt("key", encryptedData);
        System.out.println("Decoded String " + decryptedData);