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