@li0ard/gost341194
GOST R 34.11-94 hash function in pure TypeScript
docs
# from NPM
npm i @li0ard/gost341194
# from JSR
bunx jsr i @li0ard/gost341194
import { Gost341194 } from "@li0ard/streebog"
let hash = new Gost341194()
hash.update(new TextEncoder().encode("hello world"))
console.log(hash.digest())