1.0.1 • Published 3 years ago

react-native-grasshopper v1.0.1

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

react-native-grasshopper

Grasshopper GOST 3412-2015 ECB implementation with TypeScript for react native

Installation

npm

npm install react-native-grasshopper

Usage

import { decryptString, encryptString, generateKey } from 'react-native-grasshopper'

const key = generateKey()
const message = 'Hello World!'

const encrypted = encryptString(message, key)
const decrypted = decryptString(encrypted, key)