Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@bitgo/blake2b
Advanced tools
@bitgo/blake2b
Blake2b (64-bit version) in pure JavaScript
This module is based on @dcposch implementation of BLAKE2b, with some changes:
out
buffer, saving an allocationsalt
and personal
parametersAll credit goes to @dcposch for doing the hard work of porting the implementation from C to JavaScript.
var blake2b = require('@bitgo/blake2b');
var output = new Uint8Array(64);
var input = Buffer.from('hello world');
console.log('hash:', blake2b(output.length).update(input).digest('hex'));
var hash = blake2b(outLength, [key], [salt], [personal], [noAssert = false])
Create a new hash instance, optionally with key
, salt
and
personal
. Bypass input assertions by setting noAssert
to true
.
All parameters must be Uint8Array
, Buffer
or another object with a compatible
API. All parameters must also fulfill the following constraints, or an
AssertionError
will be thrown (unless noAssert = true
):
outLength
must within the byte ranges defined by the constants below.key
is optional, but must within the byte ranges defined by the constants
below, if given. This value must be kept secret, and can be used to create
prefix-MACs.salt
is optional, but must be exactly SALTBYTES
, if given. You can use
this parameter as a kind of per user id, or local versioning scheme. This
value is not required to be secret.personal
is optional, but must be exactly PERSONALBYTES
, if given. You can
use this parameter as a kind of app id, or global versioning scheme. This
value is not required to be secret.var hash = hash.update(input)
Update the hash with new input
. Calling this method after .digest
will throw
an error.
var out = hash.digest(out)
Finalise the the hash and write the digest to out
. out
must be exactly equal
to outLength
given in the blake2b
method.
Optionally you can pass hex
to get the hash as a hex string or no arguments
to have the hash return a new Uint8Array with the hash.
blake2b.BYTES_MIN
Minimum length of out
blake2b.BYTES_MAX
Maximum length of out
blake2b.BYTES
Recommended default length of out
blake2b.KEYBYTES_MIN
Minimum length of key
blake2b.KEYBYTES_MAX
Maximum length of key
blake2b.KEYBYTES
Recommended default length of key
blake2b.SALTBYTES
Required length of salt
blake2b.PERSONALBYTES
Required length of personal
npm install @bitgo/blake2b
This repository includes test vectors with
{outlen, out, input, key, salt, personal}
objects for testing conformance
against the spec and other implementations:
FAQs
Blake2b (64-bit version) in pure JavaScript
The npm package @bitgo/blake2b receives a total of 12,067 weekly downloads. As such, @bitgo/blake2b popularity was classified as popular.
We found that @bitgo/blake2b demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.