encrypt property

Future<String> get encrypt

Asynchronously encrypts the value.

Uses the Salsa20 algorithm for encryption.

Implementation

Future<String> get encrypt async {
  return await salsa20Encrypt(encryptionKey, value);
}