Skip to content

nahidhasan141400/ncrip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

ncrip is Encryption program package for node js and javaScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors