open_off method
Implementation
Uint8List open_off(Uint8List box, final int boxoff) {
if (!(box != null && box.length > boxoff)) return null;
// prepare shared key
if (this._sharedKey == null) before();
return open_after(box, boxoff, box.length - boxoff);
}