Chris Veness

Results 63 comments of Chris Veness

I think Barry may have abandoned this project. If you are using Node.js v10.5.0+, you could try my [scrypt-kdf](https://www.npmjs.com/package/scrypt-kdf), which is a simple pure-JS wrapper around the native OpenSSL implementation...

This repo is no longer maintained. If you are using `scrypt.hash`, it is now available natively in the Node.js [crypto](https://nodejs.org/api/crypto.html#crypto_crypto_scrypt_password_salt_keylen_options_callback) module. If you are using `scrypt.kdf` / `scrypt.verifyKdf`, [scrypt-kdf](https://github.com/chrisveness/scrypt-kdf) is...

Good stuff, thanks. I'll close once the fix hits npm (so it doesn't get re-reported if anyone else hits it). Excellent library, thanks for the work.

This repo is no longer maintained. If you are using `scrypt.hash`, it is now available natively in the Node.js [crypto](https://nodejs.org/api/crypto.html#crypto_crypto_scrypt_password_salt_keylen_options_callback) module. If you are using `scrypt.kdf` / `scrypt.verifyKdf`, [scrypt-kdf](https://github.com/chrisveness/scrypt-kdf) is...

Addresses #128 Error on relatively large iteration counts

[scrypt-kdf](https://www.npmjs.com/package/scrypt-kdf) provides a wrapper around the native Node.js OpenSSL scrypt implementation, with a similar interface to this repo. The Node.js native implementation is just the low-level part of scrypt –...

@sivahanuman if you are using Node [v10.5.0 (current)](https://nodejs.org/en/blog/release/v10.5.0/), scrypt has finally been released as part of the [crypto](https://nodejs.org/api/crypto.html#crypto_crypto_scrypt_password_salt_keylen_options_callback) module: I have written a zero-dependency npm module [scrypt-kdf](https://www.npmjs.com/package/scrypt-kdf) which you might...

@jaipraveen51 I can't quite make sense of that screenshot, but it looks like errors coming from scrypt, rather than scrypt-kdf - try making sure scrypt is removed from package.json (with...

@sriharikapu, this repo is no longer maintained. If you are using `scrypt.hash`, it is now available natively in the Node.js [crypto](https://nodejs.org/api/crypto.html#crypto_crypto_scrypt_password_salt_keylen_options_callback) module. If you are using `scrypt.kdf` / `scrypt.verifyKdf`, [scrypt-kdf](https://github.com/chrisveness/scrypt-kdf)...

@sriharikapu use [crypto.scrypt()](https://nodejs.org/api/crypto.html#crypto_crypto_scrypt_password_salt_keylen_options_callback) in Node 10.5.0+, or [scrypt-async](https://www.npmjs.com/package/scrypt-async) for Node < 10.5.0.