Asper Header  1.0.14
The header injector extension
Loading...
Searching...
No Matches
index.ts
Go to the documentation of this file.
1
15// Fractionating and grid-based ciphers
16export { ADFGVXCipher } from "./adfgvx";
17export { BifidCipher } from "./bifid";
18export { TrifidCipher } from "./trifid";
19export { PolybiusCipher } from "./polybius";
20
21// Mathematical and algebraic ciphers
22export { AffineCipher } from "./affine";
23export { AtbashCipher } from "./atBash";
24export { CaesarCipher } from "./caesar";
25export { ROT13Cipher } from "./rot13";
26
27// Polyalphabetic substitution ciphers
28export { AutokeyCipher } from "./autoKey";
29export { BeaufortCipher } from "./beaufort";
30export { GronsfeldCipher } from "./gronsfeld";
31export { PortaCipher } from "./porta";
32export { VigenereCipher } from "./vigenere";
33
34// Encoding and steganographic ciphers
35export { BaconCipher } from "./bacon";
36export { Base64Cipher } from "./base64";
37export { BaudotCipher } from "./baudot";
38export { PigpenCipher } from "./pigpen";
39export { TapCodeCipher } from "./tapcode";
40
41// Transposition ciphers
42export { ColumnarCipher } from "./columnar";
43export { DoubleTranspositionCipher } from "./doubleTransposition";
44export { RailFenceCipher } from "./railfence";
45export { RouteCipher } from "./route";
46export { ScytaleCipher } from "./scytale";
47
48// Complex historical ciphers
49export { EnigmaCipher } from "./enigma";
50export { VICCipher } from "./vic";
51export { NihilistCipher } from "./nihilist";
52
53// Substitution ciphers
54export { KeywordCipher } from "./keyWord";
55export { MonoalphabeticCipher } from "./monoAlphabetic";
56
57// Communication and signaling ciphers
58export { FractionatedMorseCipher } from "./fractionatedMorse";
59export { MorseBasicCipher } from "./morseBasic";
60
61// Modern and computer-based ciphers
62export { XORCipher } from "./xor";
Implementation of the ADFGVX fractionating transposition cipher.
Definition adfgvx.ts:23
Implementation of the Affine substitution cipher.
Definition affine.ts:22
Implementation of the Atbash substitution cipher.
Definition atBash.ts:21
Implementation of the Autokey polyalphabetic substitution cipher.
Definition autoKey.ts:21
Implementation of Bacon's binary steganographic cipher.
Definition bacon.ts:21
Implementation of Base64 encoding and decoding.
Definition base64.ts:21
Implementation of Baudot telegraph code encoding.
Definition baudot.ts:20
Implementation of the Beaufort reciprocal polyalphabetic cipher.
Definition beaufort.ts:21
Implementation of the Bifid fractionating transposition cipher.
Definition bifid.ts:23
Implementation of the Caesar substitution cipher.
Definition caesar.ts:21
Implementation of the Columnar Transposition cipher.
Definition columnar.ts:21
Implementation of double columnar transposition cipher.
Simplified implementation of the Enigma machine polyalphabetic cipher.
Definition enigma.ts:22
Simplified implementation of the Fractionated Morse cipher.
Implementation of the Gronsfeld polyalphabetic substitution cipher.
Definition gronsfeld.ts:21
Implementation of the Keyword monoalphabetic substitution cipher.
Definition keyWord.ts:21
Implementation of a customizable monoalphabetic substitution cipher.
Implementation of Morse code encoding and decoding.
Definition morseBasic.ts:21
Implementation of the Nihilist additive coordinate cipher.
Definition nihilist.ts:22
Implementation of the Pigpen (Freemason's) substitution cipher.
Definition pigpen.ts:21
Implementation of the Polybius Square substitution cipher.
Definition polybius.ts:21
Implementation of the Porta polyalphabetic reciprocal cipher.
Definition porta.ts:21
Implementation of the ROT13 substitution cipher.
Definition rot13.ts:22
Implementation of the Rail Fence transposition cipher.
Definition railfence.ts:21
Implementation of the Route transposition cipher.
Definition route.ts:21
Implementation of the ancient Scytale transposition cipher.
Definition scytale.ts:21
Implementation of the Tap Code prisoner communication cipher.
Definition tapcode.ts:22
Implementation of the Trifid fractionating transposition cipher.
Definition trifid.ts:23
Simplified implementation of the VIC (Soviet spy) cipher.
Definition vic.ts:23
Implementation of the Vigenère polyalphabetic substitution cipher.
Definition vigenere.ts:22
Implementation of XOR (Exclusive OR) encryption/decryption.
Definition xor.ts:22