Skip to content

marcelooblan2016/mrx-crypter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mrx Crypter

A tool that helps encrypts/decrypts(passphrase required) data with precision and generate a qr code image

image

Usage

npm i mrx-crypter

Encrypt Data

  • The string to be encrypted will be asked
  • Passphrase will be asked (Note: Do not forget as it will serve as a key to unlock/decrypt the encrypted string)
  • Qr code image will be generated and saved within the {root -> encrypted.png} folder
const {mrxCrypterEncryption} = require('mrx-crypter');

( async() => {
    mrxCrypterEncryption.encryptNow({content: null});
})();

Decryp Data

  • The encrypted data will be asked
  • Passphrase will be asked
  • Decrypted data will be displayed
const {mrxCrypterDecryption} = require('mrx-crypter');

(async function() {
    mrxCrypterDecryption.decryptNow({encryptedContent: null});
})();

About

A tool that helps encrypts/decrypts(passphrase required) data with precision and generate a qr code image

Resources

License

Stars

Watchers

Forks

Packages

No packages published