dec-enc-lib
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

dec-enc-lib

Node.js dec-enc-lib library

  • Pure JavaScript
  • Encryption and decryption string
  • Encryption and decryption object
  • Provides additional encryption with a user-entered password .

Installing

npm i dec-enc-lib

Testing

npm test

Work environment

This library developed and tested primary for Node.js

licens

MIT

Usage

Decryption and Encryption string

Example

// For string
import { Encrypt} from 'dec-enc-lib/src/Encryption.js'
import {Decrypt} from 'dec-enc-lib/src/Decryption.js'

const text = 'Hello there!';
const encryptedMessage = Encrypt(text);
console.log('encrypted: ', encrypted);
const decryptedMessage = Decrypt(encryptedMessage);
console.log('decrypted: ', decryptedMessage);

Decryption and Encryption object

Example

// For object
import {EncryptObj,DecryptObj} from 'dec-enc-lib/src/ObjectEncDec.js'

const object = { name :'manar' , age : 34 , children :['jory','horeya','shams']};
const encrypted = EncryptObj(object);
console.log('encrypted: ', encrypted);
const decrypted = DecryptObj(encrypted);
console.log('decrypted: ', decrypted);

Extra Decryption and Encryption for string with password

Example

// With password
import {EncryptWithPass,DecryptWithPass} from 'dec-enc-lib/src/PassEncDec.js'

const message = ' my name is Manar Alibrahim';
const password = 'key88';
const encrypted = EncryptWithPass(message,password);
console.log('encrypted: ', encrypted);
const decrypted = DecryptWithPass(encrypted, password);
console.log('decrypted: ', decrypted);

Keywords

Decryption- Encryption - password - object

Readme

Keywords

none

Package Sidebar

Install

npm i dec-enc-lib

Weekly Downloads

1

Version

2.0.1

License

MIT

Unpacked Size

267 kB

Total Files

26

Last publish

Collaborators

  • manaraziadoo