encryptStringDetached static method

DetachedCipher encryptStringDetached(
  1. String value,
  2. Uint8List nonce,
  3. Uint8List key
)

Encrypts a string message with a key and a nonce, returning the encrypted message and authentication tag

Implementation

static DetachedCipher encryptStringDetached(
        String value, Uint8List nonce, Uint8List key) =>
    encryptDetached(utf8.encoder.convert(value), nonce, key);