cryptography
cryptography copied to clipboard
Documentation error: `encrypt` instead of `decrypt`
Currently on https://pub.dev/documentation/cryptography/latest/cryptography/Cipher-class.html
// Decrypt
final clearText = await algorithm.encrypt(
secretBox,
secretKey: secretKey,
);
print('Cleartext: $clearText');
This should read await algorithm.decrypt(