cryptoBoxOpenAfternm static method

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

Implementation

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