decrypt function
Wraps STREAM decryption under the given key.
key must never be repeated across multiple streams.
Implementation
Uint8List decrypt({required Uint8List key, required Uint8List ciphertext}) =>
ffi.streamDecrypt(key: key, ciphertext: ciphertext);