|
Asper Header
1.0.14
The header injector extension
|
Simplified implementation of the Fractionated Morse cipher. More...


Public Member Functions | |
| constructor () | |
| Constructor for Fractionated Morse cipher. | |
Data Fields | |
| readonly | CipherName = "FractionatedMorse" |
| 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. | |
Simplified implementation of the Fractionated Morse cipher.
Currently uses basic Morse code as a placeholder. The full implementation would group Morse symbols into triplets and map them to alphabet letters using a substitution table for enhanced security.
Definition at line 23 of file fractionatedMorse.ts.
|
inline |
Constructor for Fractionated Morse cipher.
Initializes placeholder mapping table. Full implementation would create proper triplet-to-character substitution mappings.
Definition at line 46 of file fractionatedMorse.ts.
| readonly FractionatedMorseCipher::CipherName = "FractionatedMorse" |
Identifier name for this cipher.
Definition at line 27 of file fractionatedMorse.ts.