Package encryption
Class AESEncryption
java.lang.Object
encryption.AESEncryption
Class to handle AES encryption:
Key generating
Encryption and decryption
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
AESEncryption
public AESEncryption()
-
-
Method Details
-
getAESKey
Generates a random AES key- Returns:
- the generated key
-
encrypt
Encrypts a string using AES encryption- Parameters:
string
- The stringkey
- the key to encrypt the string with- Returns:
- the encrypted string
-
decrypt
Decrypts an AES encrypted string- Parameters:
string
- the encrypted string to be decryptedkey
- the AES key used to decrypt- Returns:
- the decrypted string
-