- Advanced Text Encryption Package
- Key Cryptography
- You can generate cryptographically secure random keys and IVs for you project.
Dillinger requires Node.js v10+ to run.
Install the dependencies
npm install ncripWant to contribute? Great!
require in your project:
const ncrip = require('ncrip');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;
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;
MIT