aes-password

Encrypt data with a password using aes-cbc!

Usage no npm install needed!

<script type="module">
  import aesPassword from 'https://cdn.skypack.dev/aes-password';
</script>

README

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