open_nonce_off method

Uint8List open_nonce_off(
  1. Uint8List box,
  2. int boxoff,
  3. Uint8List theNonce
)

Implementation

Uint8List open_nonce_off(
    Uint8List box, final int boxoff, Uint8List theNonce) {
  if (!(box != null && box.length > boxoff)) return null;
  return open_nonce_len(box, boxoff, box.length - boxoff, theNonce);
}