Package encryption

Class AESEncryption

java.lang.Object
encryption.AESEncryption

public class AESEncryption extends Object
Class to handle AES encryption: Key generating Encryption and decryption
  • Constructor Details

    • AESEncryption

      public AESEncryption()
  • Method Details

    • getAESKey

      public SecretKey getAESKey()
      Generates a random AES key
      Returns:
      the generated key
    • encrypt

      public String encrypt(String string, SecretKey key)
      Encrypts a string using AES encryption
      Parameters:
      string - The string
      key - the key to encrypt the string with
      Returns:
      the encrypted string
    • decrypt

      public String decrypt(String string, SecretKey key)
      Decrypts an AES encrypted string
      Parameters:
      string - the encrypted string to be decrypted
      key - the AES key used to decrypt
      Returns:
      the decrypted string