About 50 results
Open links in new tab
  1. AES Encryption and Decryption with Java - Stack Overflow

    AES Encryption and Decryption with Java Asked 12 years ago Modified 3 years, 2 months ago Viewed 70k times

  2. Java 256-bit AES Password-Based Encryption - Stack Overflow

    Jun 14, 2009 · I need to implement 256 bit AES encryption, but all the examples I have found online use a "KeyGenerator" to generate a 256 bit key, but I would like to use my own passkey. How can I …

  3. Java AES and using my own Key - Stack Overflow

    I want to encrypt a string using AES with my own key. But I'm having trouble with the bit length of the key. Can you review my code and see what I need to fix/change. public static void main (Strin...

  4. Java AES encryption and decryption - Stack Overflow

    Java AES encryption and decryption Asked 13 years, 7 months ago Modified 2 years, 8 months ago Viewed 120k times

  5. Java AES Encryption with salt - Stack Overflow

    How can I make Java encrypt String message1 = "hello world"; with String salt = "mySalt"; using AES encryption? also how can I decrypt it once encrypted? If you have the time to provide the most basic …

  6. java - Encrypt and decrypt a string with AES-128 - Stack Overflow

    Jan 19, 2015 · Encrypt and decrypt a string with AES-128 Asked 10 years, 11 months ago Modified 9 months ago Viewed 52k times

  7. encryption - How to create a secure random AES key in Java? - Stack ...

    Aug 14, 2013 · What is the recommended way of generating a secure, random AES key in Java, using the standard JDK? In other posts, I have found this, but using a SecretKeyFactory might be a better …

  8. AES-256 Password Based Encryption/Decryption in Java

    9 I found a guide for implementing AES encryption/decryption in Java and tried to understand each line as I put it into my own solution. However, I don't fully understand it and am having issues as a result. …

  9. encryption - How to write Java code for AES GCM Decryption using ...

    Jun 8, 2023 · 3 I am building a Java SDK for which I need to write a service to decrypt cipher text using initialVector, authenticationTag and secretKey. I am taking reference from equivalent node SDK. The …

  10. Encryption decryption AES for all type of file in java

    General purpose encryption algorithms like AES don't care about the kind of document they're encrypting; they just operate on byte streams. If you're not getting the original document after …