1.0.0 • Published 5 years ago

simple-hash-browser v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

Easy Hash

A barebones function for getting a SHA356 hash of a string using the browser's native crypto module.

Usage

import sha from "simple-hash-browser";

sha("String To Hash Beyond Recognition");
 // returns a Promise

sha("This other string").then(hash => {console.log(hash)});
// "0d5a0597790745345842b61356016e3b24e83a7e6b0266618180c3a864bf25f1"