box_nonce_off method

Uint8List box_nonce_off(
  1. Uint8List message,
  2. int moff,
  3. Uint8List theNonce
)

Implementation

Uint8List box_nonce_off(
    Uint8List message, final int moff, Uint8List theNonce) {
  if (!(message != null && message.length > moff)) return null;
  return box_nonce_len(message, moff, message.length - moff, theNonce);
}