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

blake2s

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blake2s

port of Dmitry Chestnykh's blake2s-js to node style

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

BLAKE2s

A port of Dmitry Chestnykh's typescript blake2s implementation to node.js style javascript

build status

testling badge

I've left the blake2s.ts script in the source, and edited the output javascript. I did try to bring the typescript to node.js style, using Buffer, update(buffer, enc) but that made a lot of type errors, and in my opinion, type errors are not really the hardest part of programming. I will be happy if someone can show me how to correct the typescript implementation to node.js style.

Usage

        // constructor accepts digest length in bytes
var h = new BLAKE2s(32)
        //pass encoding into update, like in node's crypto module
h.update("string or array of bytes", 'utf8')
        //request the digest encoding
h.digest('hex')

// Keyed:
var h = new BLAKE2s(32, "some key")
...

Demo

http://www.dchest.org/blake2s-js/

License

PUBLIC DOMAIN DEDICATION

Written in 2012 by Dmitry Chestnykh.

To the extent possible under law, the author have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. http://creativecommons.org/publicdomain/zero/1.0/

Keywords

FAQs

Package last updated on 07 Mar 2015

Did you know?

Socket

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.

Install

Related posts

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