crypto_box_open_afternm static method

Uint8List crypto_box_open_afternm(
  1. Uint8List m,
  2. Uint8List c,
  3. int d,
  4. Uint8List n,
  5. Uint8List k,
)

Implementation

static Uint8List crypto_box_open_afternm(
    Uint8List m, Uint8List c, int /*long*/ d, Uint8List n, Uint8List k) {
  return crypto_secretbox_open(m, c, d, n, k);
}