We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589cfb4 commit 7dc508cCopy full SHA for 7dc508c
content/security/encryption-hashing.md
@@ -11,7 +11,7 @@ Node.js provides a built-in [crypto module](https://nodejs.org/api/crypto.html)
11
As an example, let's use AES (Advanced Encryption System) `'aes-256-ctr'` algorithm CTR encryption mode.
12
13
```typescript
14
-import { createCipheriv, randomBytes } from 'crypto';
+import { createCipheriv, randomBytes, scrypt } from 'crypto';
15
import { promisify } from 'util';
16
17
const iv = randomBytes(16);
0 commit comments