grasshopper-ts
v1.0.1
Published
Grasshopper GOST 3412-2015 ECB implementation with TypeScript
Downloads
16
Readme
grasshopper-ts
Grasshopper GOST 3412-2015 ECB implementation with TypeScript
Installation
yarn
yarn add grasshopper-ts
npm
npm install grasshopper-ts
Usage
import { decryptString, encryptString, generateKey } from 'grasshopper-ts'
const key = generateKey()
const message = 'Hello World!'
const encrypted = encryptString(message, key)
const decrypted = decryptString(encrypted, key)