🔐 Encryption Key Generator
Use this tool to generate a secure random encryption key for your config.php file.
💡 What is this?
The encryption key is used to encrypt sensitive data before sending it to Telegram.
You need a strong, random key for security.
Your New Encryption Key:
X7XSKglc6/zyZ6eBSvXMgumKVI4w7iek6wG0bOMsCkk=
⚠️ Important:
- Copy this key and save it in your
config.php file
- Keep this key secret - never share it or commit it to version control
- If you lose this key, you won't be able to decrypt old data
- This page generates a new key each time you refresh
How to Use:
- Click "Copy Key" button above
- Open
backend/config.php in a text editor
- Find this line:
define('ENCRYPTION_KEY', '...');
- Replace the value with your new key
- Save the file
Example:
define('ENCRYPTION_KEY', 'X7XSKglc6/zyZ6eBSvXMgumKVI4w7iek6wG0bOMsCkk=');
✅ Security Features:
• 256-bit encryption strength
• Cryptographically secure random generation
• Base64 encoded for easy storage
• Compatible with AES-256-CBC encryption