|
Asper Header
1.0.14
The header injector extension
|
Implementation of the Columnar Transposition cipher. More...


Public Member Functions | |
| constructor () | |
| Constructor for Columnar Transposition cipher. | |
Data Fields | |
| readonly | CipherName = "Columnar" |
| 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 the Columnar Transposition cipher.
Arranges plaintext in a rectangular grid based on key length, then reads columns in the order determined by sorting the key. This provides a transposition-based encryption method.
Definition at line 21 of file columnar.ts.
|
inline |
Constructor for Columnar Transposition cipher.
Initializes the cipher. The key is provided during encode/decode operations.
Definition at line 31 of file columnar.ts.
| readonly ColumnarCipher::CipherName = "Columnar" |
Identifier name for this cipher.
Definition at line 25 of file columnar.ts.