mini-blake3

Simple Blake3 Hashing In Pure JavaScript

Usage no npm install needed!

<script type="module">
  import miniBlake3 from 'https://cdn.skypack.dev/mini-blake3';
</script>

README

BLAKE3

BLAKE3 Hashing In Pure JavaScript

About

  • 100% JavaScript ๐Ÿ’ช
  • String/Array/Buffer Support ๐Ÿงฐ
  • Doesn't Crash ๐Ÿงจ
  • Browser Support ๐ŸŽฏ
  • Browserified ๐Ÿ––

Installation

~ npm i mini-blake3

Usage


const { hash, verify } = require('mini-blake3')

const hash = hash('data')
//==> <Buffer 90 g2 71 b3 83 42 61 03 81 50 9b>
const verified = verify('data', hash)
//==> true/false

Related Packages