How to encrypt data using AES in Java

32,578

This is probably the best guide that I've found on the subject. It explains the basics, one concept at a time, in simple terms.

Share:
32,578

Related videos on Youtube

molleman
Author by

molleman

Avid rugby player, it student who is doing his final year project at the moment and finding it quite tough! gwt hibernate gilead

Updated on August 15, 2020

Comments

  • molleman
    molleman over 3 years

    I wish to encrypt a piece of data using AES (cbc) in java , I Want to use my own IV, which I have held in a byte array and my own key held in a byte array.

    How would I go about doing this?

    I'm searching for it to find tutorials on this topic.

    • President James K. Polk
      President James K. Polk about 13 years
      If you cannot understand a tutorial you are not going to understand an even more succinct answer here on SO. Perhaps you can be a little more specific about what you don't understand in all the examples you discovered via the google.
  • Arshad shaik
    Arshad shaik over 6 years
    formally it encrypts the string into unreadable format. Use same code to decrypt.

Related