1.1.3 • Published 12 months ago

@fruitsjs/crypto v1.1.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 months ago

@fruitsjs/crypto

Cryptographic functions for building Fruits Eco-Blockchain apps.

Installation

FruitsJS can be used with NodeJS or Web.

Using with NodeJS and/or modern web frameworks

Install using npm:

npm install @fruitsjs/crypto

or using yarn:

yarn add @fruitsjs/crypto

Example

import {encryptAES, decryptAES, hashSHA256} from '@fruitsjs/crypto'

const encrypted = encryptAES('test', 'key')
const decrypted = decryptAES(encrypted, 'key')
console.log(hashSHA256('test'))
console.log(decrypted)