1.0.1 • Published 5 years ago

grasshopper-ts v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

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)