Uint8List openBox(Uint8List boxData, Uint8List key) { var box = SecretBox(Uint8List.fromList(key)); var res = box.decrypt(EncryptedMessage.fromList(Uint8List.fromList(boxData))); return res; }