Skip to content

renjithspace/encrip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Encrip

Tiny, Secure, Zero Dependency and Secret Key Based Encryption

Installation

npm install encrip

Usage

const Encrip = require('encrip')

const plainText = 'Hello world'
const secretKey = 'mysecretkey'

const cipher = Encrip.encrypt(plainText, secretKey) // ӽԚԡԡԤӕԬԤԧԡԙ
Encrip.decrypt(cipher, secretKey) // Hello world

Try online

You can find an Encrip starter project from repl.it

About

Tiny, Secure, Zero Dependency and Secret Key Based Encryption

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors