Java Bouncy Castle Cryptography - Encrypt with AES

前端 未结 2 1417
一生所求
一生所求 2020-12-08 22:05

How do I implement AES encryption with the java bouncy castle library? Example code or a link to example code would be nice :)

相关标签:
2条回答
  • 2020-12-08 22:46

    Check the org.bouncycastle.crypto.test package.

    0 讨论(0)
  • 2020-12-08 22:48

    If you download the bcprov source, you'll see the class org.bouncycastle.jce.provider.test.AESTest. It shows you how to set up the bouncyCastle provider, create encryption and decryption Cipher objects, set up CipherOutputStreams and call the write methods on those streams.

    Edit: seems like link is broken. Look here for AESTest

    0 讨论(0)
提交回复
热议问题