1.0.2 • Published 4 years ago

ro-encrypt v1.0.2

Weekly downloads
51
License
MIT
Repository
github
Last release
4 years ago

Representational Object Encryption

Getting Started

// import the Class as UpperCase because all functions are static

const ROE = require('ro-encrypt');

const plainPassword = 'your-secret';

const key = ROE.createKey(plainPassword);

const encrypted = ROE.encrypt(plainPassword, key);
const decrypted = ROE.decrypt(encrypted, key);
1.0.2

4 years ago

1.0.1

4 years ago

1.1.0

4 years ago