crypto-pbkdf2
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -0,0 +0,0 @@ /* |
{ | ||
"name": "crypto-pbkdf2", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"author": "Jeff Mott", | ||
@@ -20,2 +20,2 @@ "description": "CryptoJS' PBKDF2 rollup as a stand-alone npm package. Managed by David Murdoch", | ||
"main": "./index.js" | ||
} | ||
} |
@@ -1,4 +0,6 @@ | ||
crypto-PBKDF2 | ||
============= | ||
# You should probably use [easy-pbkdf2](https://github.com/davidmurdoch/easy-pbkdf2) instead as it uses node's built-in `crypto.pbkdf2` method. | ||
## crypto-PBKDF2 | ||
[crypto.js'](http://code.google.com/p/crypto-js/) PBKDF2 standalone implementation for npm. | ||
@@ -12,3 +14,3 @@ | ||
var SALT_SIZE: 192/8; | ||
var SALT_SIZE = 192/8; | ||
@@ -64,2 +66,2 @@ var KEY_SIZE = 768/32; | ||
var isPassword = checkPassword( "password", salt, hashedPassword ); // true | ||
``` | ||
``` |
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
8322
66