Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pbkdf2-sha256

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pbkdf2-sha256 - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

6

CHANGELOG.md

@@ -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 @@

2

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc