crypto_box_afternm static method

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

Implementation

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