Represents encrypted data with all necessary components for decryption.
The key is intentionally not stored here — pass it explicitly to decrypt.
Constructors
from_base64(encoded :
String, iv_size :
Int32 = 12, tag_size :
Int32 = 16) :
EncryptedData Parse from URL-safe base64 encoded string
SourceInstance methods
ciphertext=(ciphertext :
Bytes)
Sourceto_base64
Convert to URL-safe base64 encoded string (all components concatenated)
Source