box_nonce_off method
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);
}