Asper Header  1.0.14
The header injector extension
Loading...
Searching...
No Matches
ADFGVXCipher Class Reference

Implementation of the ADFGVX fractionating transposition cipher. More...

Inheritance diagram for ADFGVXCipher:
Inheritance graph
Collaboration diagram for ADFGVXCipher:
Collaboration graph

Public Member Functions

 constructor ()
 Constructor for ADFGVX cipher.
 

Data Fields

readonly CipherName = "ADFGVX"
 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.
 

Detailed Description

Implementation of the ADFGVX fractionating transposition cipher.

First encodes characters using a 6×6 Polybius square containing A-Z and 0-9, representing coordinates with the letters ADFGVX. Then applies columnar transposition to the resulting coordinate pairs for additional security.

Definition at line 23 of file adfgvx.ts.

Member Function Documentation

◆ constructor()

ADFGVXCipher::constructor ( )
inline

Constructor for ADFGVX cipher.

Initializes the 6×6 character grid with alphabet and digits. The grid arrangement is fixed for this implementation.

Definition at line 46 of file adfgvx.ts.

Field Documentation

◆ CipherName

readonly ADFGVXCipher::CipherName = "ADFGVX"

Identifier name for this cipher.

Definition at line 39 of file adfgvx.ts.


The documentation for this class was generated from the following file: