crypto_box static method
Implementation
static Uint8List crypto_box(Uint8List c, Uint8List m, int /*long*/ d,
Uint8List n, Uint8List y, Uint8List x) {
final k = Uint8List(32);
crypto_box_beforenm(k, y, x);
return crypto_box_afternm(c, m, d, n, k);
}