decryptAfternm static method

Uint8List decryptAfternm(
  1. Uint8List cipherText,
  2. Uint8List nonce,
  3. Uint8List k
)

Verifies and decrypts a cipher text produced by encrypt.

Implementation

static Uint8List decryptAfternm(
        Uint8List cipherText, Uint8List nonce, Uint8List k) =>
    Sodium.cryptoBoxOpenEasyAfternm(cipherText, nonce, k);