Skip to content

An encryption library used by CLIpher Server which encrypts/decrypts data with a password written in typescript

License

Notifications You must be signed in to change notification settings

open-nomie/aes-password

 
 

Repository files navigation

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
  • About

    An encryption library used by CLIpher Server which encrypts/decrypts data with a password written in typescript

    Resources

    License

    Stars

    Watchers

    Forks

    Releases

    No releases published

    Packages

    No packages published

    Languages

    • TypeScript 100.0%