cryptoBoxOpen method

int cryptoBoxOpen(
  1. Uint8List m,
  2. Uint8List c,
  3. int d,
  4. Uint8List n,
  5. Uint8List y,
  6. Uint8List x,
)

Implementation

int cryptoBoxOpen(Uint8List m, Uint8List c, int /*long*/ d, Uint8List n,
    Uint8List y, Uint8List x) {
  Uint8List k = Uint8List(32);
  cryptoBoxBeforenm(k, y, x);
  return cryptoBoxOpenAfternm(m, c, d, n, k);
}