aboutsummaryrefslogtreecommitdiff
path: root/node_modules/evp_bytestokey/readme.md
blob: 86234dbf36812b260aa92fefbce96dc9c04fa3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
EVP_BytesToKey
===

The super secure [key derivation algorithm from openssl](https://wiki.openssl.org/index.php/Manual:EVP_BytesToKey(3)) (spoiler alert not actually secure, only every use it for compatibility reasons).

Api:
===

```js
var result = EVP_BytesToKey('password', 'salt', keyLen, ivLen);
Buffer.isBuffer(result.password); // true
Buffer.isBuffer(result.iv); // true
```