Is there a library or something that will allow me to simply call a function that will AES encrypt a byte array?
I don't want to deal with multiple update blocks/transformFinal/etc, because there is a possibility I will mess up...
Is there a library or something that will allow me to simply call a function that will AES encrypt a byte array?
I don't want to deal with multiple update blocks/transformFinal/etc, because there is a possibility I will mess up...
This link has an example of using AES in java's crypto libraries.
Update: The Chilkat library has some AES abstractions. Here is an example.
Haven't used java in a while but Bouncy Castle was pretty nice. For add benefit, there's a c# port.