Kyle
Kyle

Reputation: 22035

Java Bouncy Castle Cryptography - Encrypt with AES

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

Upvotes: 17

Views: 29027

Answers (2)

John
John

Reputation: 6785

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

Upvotes: 23

Dan Gifford
Dan Gifford

Reputation: 896

Check the org.bouncycastle.crypto.test package.

Upvotes: -2

Related Questions