is-unicipher
v0.0.2-beta
Published
(https://www.npmjs.com/package/is-unicipher)
Downloads
41
Readme
UniCipher Library
(https://www.npmjs.com/package/is-unicipher)
by Intelligent Software. Yuriy Klerk.
Install
npm i --save is-unicipherHow to use
import UniCipher from 'is-unicipher';
//or (for es < 6)
const UniCipher = require("is-unicipher"); Encrypt your text with some password:
UniCipher.encrypt("<somePassword>", "<somePlainText>");Decrypt your cipher:
UniCipher.encrypt("<somePassword>", "<someCipher>");