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
- Host: GitHub
- URL: https://github.com/li0ard/gost341194
- Owner: li0ard
- License: mit
- Created: 2025-07-19T12:56:55.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-07-19T13:05:49.000Z (4 months ago)
- Last Synced: 2025-07-19T16:04:55.729Z (4 months ago)
- Topics: crypto, gost, gost3411, gost341194, streebog
- Language: TypeScript
- Homepage: https://li0ard.is-cool.dev/gost341194
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: CITATION.cff
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())
```