We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db0fcba + 09fb360 commit 58bdc86Copy full SHA for 58bdc86
README.md
@@ -68,7 +68,7 @@ const cipher = await aes.encrypt("This is AES-128-CBC. It works.");
68
console.log(cipher.hex());
69
// 41393374609eaee39fbe57c96b43a9da0d547c290501be50f983ecaac6c5fd1c
70
71
-const plain = await aes.decrypt(ciper);
+const plain = await aes.decrypt(cipher);
72
console.log(plain.toString());
73
// This is AES-128-CBC. It works.
74
```
0 commit comments