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