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