mez-encryption
v1.0.0
Published
Advanced JavaScript encryption library featuring hybrid Caesar Cryptogram, customizable Pigpen Cipher, and educational cryptography tools
Maintainers
Readme
Mez Encryption
Advanced JavaScript encryption library featuring hybrid Caesar Cryptogram, customizable Pigpen Cipher, and educational cryptography tools.
Features
- 🔐 Multiple encryption algorithms
- 🎯 Hybrid cipher combinations
- 📊 Educational tools and explanations
- ⚡ Performance benchmarking
- 🛠️ Customizable ciphers
- 🔧 Utility functions
Installation
npm install mez-encryptionQuick Start
import MezEncryptor from 'mez-encryption';
const encryptor = MezEncryptor();
// Caesar Cipher
const encrypted = encryptor.caesarEncrypt("HELLO", 3);
const decrypted = encryptor.caesarDecrypt(encrypted, 3);
// Pigpen Cipher
const pigpenEncrypted = encryptor.pigpenEncrypt("SECRET");
// Hybrid Encryption
const hybrid = encryptor.caesarPigpenEncrypt("MESSAGE", 5);Algorithms
Caesar Cipher
Pigpen Cipher
Progressive Caesar
Bidirectional Caesar
Custom Alphabet Caesar
Hybrid Combinations
Use Cases
Enhanced security for simple applications
Teaching advanced cryptography concepts
Custom encryption needs
Educational purposes
Simple message encoding
Learning cryptography basics
Cryptanalysis training
Security testing
Key generation
