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

bcrypt

Package Overview
Dependencies
Maintainers
4
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bcrypt - npm Package Compare versions

Comparing version 0.8.1 to 0.8.2

9

bcrypt.js

@@ -49,3 +49,10 @@ 'use strict';

return bindings.gen_salt(rounds, crypto.randomBytes(16), cb);
crypto.randomBytes(16, function(error, randomBytes) {
if (error) {
cb(error);
return;
}
bindings.gen_salt(rounds, randomBytes, cb);
});
};

@@ -52,0 +59,0 @@

@@ -0,1 +1,5 @@

# 0.8.2 (2015-03-28)
* always use callback for generating random bytes to avoid blocking
# 0.8.1 (2015-01-18)

@@ -2,0 +6,0 @@ * update NaN to 1.5.0 for iojs support

6

package.json

@@ -14,3 +14,3 @@ {

"main": "./bcrypt",
"version": "0.8.1",
"version": "0.8.2",
"author": "Nick Campbell (https://github.com/ncb000gt)",

@@ -36,4 +36,4 @@ "engines": {

"dependencies": {
"bindings": "1.0.0",
"nan": "1.5.0"
"bindings": "1.2.0",
"nan": "1.7.0"
},

@@ -40,0 +40,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

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