Package vaultWeb.security
Class EncryptionUtil.EncryptResult
java.lang.Object
vaultWeb.security.EncryptionUtil.EncryptResult
- Enclosing class:
EncryptionUtil
Result object for the encryption operation.
Contains the Base64-encoded ciphertext and the Base64-encoded initialization vector (IV) needed for decryption.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEncryptResult(String cipherTextBase64, String ivBase64) Constructs a new EncryptResult with the given ciphertext and IV. -
Method Summary
-
Field Details
-
cipherTextBase64
Base64-encoded ciphertext -
ivBase64
Base64-encoded initialization vector (IV)
-
-
Constructor Details
-
EncryptResult
Constructs a new EncryptResult with the given ciphertext and IV.- Parameters:
cipherTextBase64- Base64-encoded ciphertextivBase64- Base64-encoded IV
-