0.1.0
A streaming hash library for Deno
Repository
Current version released
5 years ago
Dependencies
std
Versions
hash_slinging_slasher

A Deno library for hashing a data stream.
Examples
import { hash } from "https://deno.land/x/hash_slinging_slasher";
const file = await Deno.open("random.bin");
const computed = await hash(file, "hex", "sha1");
// Logs the computed hash in hex
console.log(computed);