1.0.1 • Published 2 years ago

ncrip v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

ncrip

ncrip is Encryption program

Features

  • Advanced Text Encryption Package
  • Key Cryptography
  • You can generate cryptographically secure random keys and IVs for you project.

Installation

Dillinger requires Node.js v10+ to run.

Install the dependencies

npm install ncrip

Development

Want to contribute? Great!

require in your project:

const ncrip = require('ncrip');

.enc(text,key)

Text Encryption:

let data = ncrip.enc(text,key);

this function retrune a long encryption code.

text : this is your plain string text. key:this is uniq number that use for decryption the text;

.dnc(encriptedText,key)

Text decryption:

let data = ncrip.dnc(encriptedText,key);

this function retrune a long encryption code.

encriptedText : this is encryption code you want to decryption key:this is uniq number that use for decryption the text;

License

MIT