We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6826c1 commit 09fb360Copy full SHA for 09fb360
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