Decrypt AES encrypted file in java

前端 未结 4 1989
一生所求
一生所求 2021-02-06 17:42

I have a file encrypted with java application using AES. I also have a key file was encrypted with. But i can\'t understand how to use the key to decrypt file. Most tutorials an

4条回答
  •  时光说笑
    2021-02-06 18:21

    Complete example of encrypting/Decrypting a huge video without throwing Java OutOfMemoryException and using Java SecureRandom for Initialization Vector generation. Also depicted storing key bytes to database and then reconstructing same key from those bytes.

    https://stackoverflow.com/a/18892960/185022

提交回复
热议问题