Java Bouncy Castle Cryptography - Encrypt with AES

2019-01-17 16:13发布

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

2条回答
男人必须洒脱
2楼-- · 2019-01-17 17:12

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

查看更多
孤傲高冷的网名
3楼-- · 2019-01-17 17:16

Check the org.bouncycastle.crypto.test package.

查看更多
登录 后发表回答