Android JNI string encryption/decryption

后端 未结 2 1118
隐瞒了意图╮
隐瞒了意图╮ 2021-01-22 02:22

I am trying to do aes encryption/decryption in native code C. Encryption does work but when I try to decrypt the string. It doesn\'t end up as original string. Here is the JNI m

2条回答
  •  感情败类
    2021-01-22 03:09

    You are using the low level encryption modes of OpenSSL. Your troubles are likely to vanish if you use the higher level EVP_* methods, e.g. for AES/CBC mode encryption. See also this related question.

提交回复
热议问题