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

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

Inheritance diagram for BifidCipher:
Inheritance graph
Collaboration diagram for BifidCipher:
Collaboration graph

Public Member Functions

 constructor ()
 Constructor for Bifid cipher.
 

Data Fields

readonly CipherName = "Bifid"
 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 Bifid fractionating transposition cipher.

Combines Polybius square substitution with coordinate transposition. The process: letters → coordinates → rearrange → letters. This creates a more complex cipher than simple substitution.

Definition at line 23 of file bifid.ts.

Member Function Documentation

◆ constructor()

BifidCipher::constructor ( )
inline

Constructor for Bifid cipher.

Initializes the Bifid cipher. Uses PolybiusCipher internally for coordinate conversion operations.

Definition at line 34 of file bifid.ts.

Field Documentation

◆ CipherName

readonly BifidCipher::CipherName = "Bifid"

Identifier name for this cipher.

Definition at line 27 of file bifid.ts.


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