Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.21 KB

README.md

File metadata and controls

42 lines (32 loc) · 1.21 KB

Aes Password

About

Secure Encryption as easy as a-b-c. All you need to do is import a module and call a function 😮!

Encryption

import { AESEncryption } from 'aes-password';

const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');

Decryption

import { AESEncryption } from 'aes-password';

const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
const decrypted = AESEncryption.decrypt(encrypted, 'Password');

Projects used in

  • Clipher Server
  • UltraV
  • Made by

  • sshcrack
  • Perry Mitchell (and his great article)
  • Rithul Kamesh