Socket
Socket
Sign inDemoInstall

blake2b

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blake2b - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

1

index.js

@@ -283,2 +283,3 @@ var assert = require('assert')

blake2bUpdate(ctx, input)
return this
},

@@ -285,0 +286,0 @@ final: function (out) {

2

package.json
{
"name": "blake2b",
"version": "1.1.0",
"version": "1.2.0",
"description": "Blake2b (64-bit version) in pure Javascript",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -30,3 +30,3 @@ # `blake2b`

### `blake2b(out, input, [key], [salt], [personal], [noAssert = false])`
### `var out = blake2b(out, input, [key], [salt], [personal], [noAssert = false])`

@@ -59,3 +59,3 @@ Hash `input` and write result to `out`, optionally with `key`, `salt` and

### `instance.update(input)`
### `var instance = instance.update(input)`

@@ -65,3 +65,3 @@ Update the hash with new `input`. Calling this method after `.final` will throw

### `instance.final(out)`
### `var out = instance.final(out)`

@@ -68,0 +68,0 @@ Finalise the the hash and write the digest to `out`. `out` must be exactly equal

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