@arispati/crypto-aes

0.1.2 • Public • Published

CryptoAESJS

AES crypto library which can be used in php and javascript (Javascript Version).

If you want to use this library in PHP use the CryptoAES.

How to Install

  • Install with npm
npm install @arispati/crypto-aes

How to Use

import CryptoAES from '@arispati/crypto-aes'

// Set the secret key
let secretKey = 's3cr3tK3y' // default secret key

// Initilize CryptoAES Class
let crypto = new CryptoAES(secretKey)

// Encrypt
let encrypted = crypto.encrypt('Hello World')
// {"ct":"ZIT1dzu47ndkudvSX9buFw==","iv":"56750944c9cb7b1844aab808c4f4581d","s":"35c9511ea1d8e3e5"}

// Decrypt
let decrypted = crypto.decrypt(encrypted)
// "Hello World"

Readme

Keywords

Package Sidebar

Install

npm i @arispati/crypto-aes

Weekly Downloads

5

Version

0.1.2

License

MIT

Unpacked Size

2.58 kB

Total Files

3

Last publish

Collaborators

  • arispati