如何获得相同的加密文本?

时间:2015-03-25 04:47:06

标签: android encryption passwords password-encryption

 String seedValue = "This Is MySecure";

 String normalText = "Password";

 normalTextEnc = AESHelper.encrypt(seedValue, normalText);

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

当我再次运行此代码时,它会为我提供另一个加密文本。 我怎样才能获得相同的加密文本?

1 个答案:

答案 0 :(得分:0)

看看这个。加密功能将加密消息"这是MESSAGE"用密码"键"。然后我们使用相同的密码在解密函数中解密加密的消息。您可以通过此链接获取更多信息。 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);