encrypt abstract method
Encrypts the input data using the key and algorithm
When the algorithm requires an initialization vector and none is provided, a random initialization vector is generated.
Implementation
EncryptionResult encrypt(Uint8List input,
{Uint8List? initializationVector,
Uint8List? additionalAuthenticatedData});