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.
2 parents 589cfb4 + 7dc508c commit 843e410Copy full SHA for 843e410
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