Skip to content
This repository was archived by the owner on Nov 12, 2024. It is now read-only.

Latest commit

 

History

History
42 lines (33 loc) · 1.29 KB

File metadata and controls

42 lines (33 loc) · 1.29 KB

Aes Password

(not maintained, please refer to aes encryption and password hashing using argon2)

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