pbkdf2-sha256
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,5 @@ | ||
1.1.1 / 2015-09-28 | ||
------------------ | ||
- if key is `string`, handle as utf8. See: https://github.com/cryptocoinjs/pbkdf2-sha256/pull/2 | ||
1.1.0 / 2014-12-11 | ||
@@ -32,2 +36,2 @@ ------------------ | ||
- extracted from https://github.com/cheongwy/node-scrypt-js/blob/master/lib/pbkdf2.js | ||
- fixed bug that didn't initialize hmac in loop, now passes all tests | ||
- fixed bug that didn't initialize hmac in loop, now passes all tests |
@@ -10,2 +10,3 @@ var assert = require('assert') | ||
if (typeof key == 'string') key = new Buffer(key) | ||
if (typeof salt == 'string') salt = new Buffer(salt) | ||
@@ -12,0 +13,0 @@ |
{ | ||
"name": "pbkdf2-sha256", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "pbkdf2-sha256 is a PBDKF2 implementation using HMAC SHA256", | ||
@@ -5,0 +5,0 @@ "main": "./lib/pbkdf2.js", |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
4223
32
1