# @fruitsjs/crypto

Cryptographic functions for building Fruits apps.

## Installation

FruitsJS can be used with NodeJS or Web. Two formats are available

### Using with NodeJS and/or modern web frameworks

Install using [npm](https://www.npmjs.org/):

```
npm install @fruitsjs/crypto
```

or using [yarn](https://yarnpkg.com/):

``` yarn
yarn add @fruitsjs/crypto
```

#### Example

```js
import {encryptAES, decryptAES, hashSHA256} from '@fruitsjs/crypto'

const encrypted = encryptAES('test', 'key')
const decrypted = decryptAES(encrypted, 'key')
console.log(hashSHA256('test'))
console.log(decrypted)
```
