Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "scrypt", | ||
"description": "The scrypt crypto library for NodeJS", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"keywords": [ | ||
@@ -6,0 +6,0 @@ "scrypt", |
#Scrypt For NodeJS | ||
node-scrypt is a native node C++ wrapper for Colin Percival's scrypt [key derivation](http://en.wikipedia.org/wiki/Key_derivation_function) utility. It is fully asynchronous (in fact, there is no synchronous mode due to the time input of scrypt which would block the event loop). | ||
node-scrypt is a native node C++ wrapper for Colin Percival's scrypt [key derivation](http://en.wikipedia.org/wiki/Key_derivation_function) utility. | ||
node-scrypt wraps scrypt's C reference implementation and provides implementation for the following: | ||
* Password hash. | ||
* Password hash verification. | ||
* Encryption. | ||
* Decryption. | ||
##What Is Scrypt? | ||
@@ -283,3 +276,3 @@ Scrypt is an advanced crypto library used mainly for [key derivation](http://en.wikipedia.org/wiki/Key_derivation_function) (i.e. password authenticator). More information can be found: | ||
* `maxmemfrac` - [OPTIONAL] - instructs scrypt to use the specified fracion of RAM (defaults 0.5). | ||
* `verifyHash(hash, password)` | ||
* `verifyHashSync(hash, password)` | ||
* `hash` - [REQUIRED] - the password created with the above `passwordHash` function. | ||
@@ -286,0 +279,0 @@ * `password` - [REQUIRED] - a password string. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
195315
1
320