/cipher
/cipher is a unified encryption and decryption command.
It supports both modern algorithms and classic ciphers, making it useful for learning, testing, and lightweight text transformations inside Telegram.
Supported Methods
aes-256-cbcaes-192-cbcaes-128-cbcaes-256-ctraes-256-gcmdes-ede3-cbcxormorseatbashcaesarvigenererailfence
General Format
/cipher <encrypt|decrypt> <method> <key> <text>
Examples:
/cipher encrypt aes-256-cbc mypassword hello
/cipher decrypt aes-256-cbc mypassword <ciphertext>
/cipher encrypt caesar 3 hello
/cipher encrypt morse hello
Method Rules
morsedoes not require a keyatbashdoes not require a keycaesarrequires a numeric shiftrailfencerequires a numeric parametervigenererequires an alphabetic key- Other symmetric algorithms require a password or key
Notes
- Some methods are educational classic ciphers rather than modern secure encryption
- For best results, make sure the method, mode, and key format match the input you use