An open API service indexing awesome lists of open source software.

https://github.com/li0ard/gost341194

GOST R 34.11-94 hash function in pure TypeScript
https://github.com/li0ard/gost341194

crypto gost gost3411 gost341194 streebog

Last synced: 3 months ago
JSON representation

GOST R 34.11-94 hash function in pure TypeScript

Awesome Lists containing this project

README

          


@li0ard/gost341194

GOST R 34.11-94 hash function in pure TypeScript


docs












## Installation

```bash
# from NPM
npm i @li0ard/gost341194

# from JSR
bunx jsr i @li0ard/gost341194
```

## Usage

```ts
import { Gost341194 } from "@li0ard/streebog"

let hash = new Gost341194()
hash.update(new TextEncoder().encode("hello world"))
console.log(hash.digest())
```