Grasshopper GOST 3412-2015 ECB implementation with TypeScript
npm install grasshopper-tssh
yarn add grasshopper-ts
`
$3
`sh
npm install grasshopper-ts
`
Usage
`js
import { decryptString, encryptString, generateKey } from 'grasshopper-ts'
const key = generateKey()
const message = 'Hello World!'
const encrypted = encryptString(message, key)
const decrypted = decryptString(encrypted, key)
``