|
Asper Header
1.0.14
The header injector extension
|
Implementation of Bacon's binary steganographic cipher. More...


Public Member Functions | |
| constructor () | |
| Constructor for Bacon cipher. | |
Data Fields | |
| readonly | CipherName = "Bacon" |
| Identifier name for this cipher. | |
Data Fields inherited from BaseCipher | |
| abstract abstract encode(plaintext:string, key?:any) abstract decode(ciphertext:string, key?:any) readonly | CipherName: string |
| Abstract method to encode plaintext. | |
Additional Inherited Members | |
Static Public Attributes inherited from BaseCipher | |
| static readonly | ALPHABET: string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| Standard English alphabet for cipher operations. | |
Implementation of Bacon's binary steganographic cipher.
Converts each letter to a 5-bit binary code represented by A (0) and B (1). The position of each letter in the alphabet determines its binary value. Originally designed to be hidden in typographic variations.
|
inline |
| readonly BaconCipher::CipherName = "Bacon" |