Asper Header  1.0.14
The header injector extension
Loading...
Searching...
No Matches
index.ts
Go to the documentation of this file.
1
12// Export base cipher infrastructure
13export { BaseCipher, CipherI } from './base';
14
15// Export all cipher implementations
16export {
25} from './flavoured';
26
27// Export cipher management utilities
28export { Cipher, ALLCiphers } from './ciphers';
export const ALLCiphers
Comprehensive object containing all cipher classes and utilities.
Definition ciphers.ts:158
Implementation of XOR (Exclusive OR) encryption/decryption.
Definition xor.ts:22
BaudotCipher
Definition index.ts:18
CaesarCipher
Definition index.ts:19
PortaCipher
Definition index.ts:22
ColumnarCipher
Definition index.ts:19
FractionatedMorseCipher
Definition index.ts:20
BaconCipher
Definition index.ts:18
EnigmaCipher
Definition index.ts:20
GronsfeldCipher
Definition index.ts:20
MonoalphabeticCipher
Definition index.ts:21
VigenereCipher
Definition index.ts:23
VICCipher
Definition index.ts:23
ADFGVXCipher
Definition index.ts:17
Cipher
Definition index.ts:28
BeaufortCipher
Definition index.ts:18
TrifidCipher
Definition index.ts:23
AffineCipher
Definition index.ts:17
Base64Cipher
Definition index.ts:18
MorseBasicCipher
Definition index.ts:21
ScytaleCipher
Definition index.ts:23
AutokeyCipher
Definition index.ts:17
PolybiusCipher
Definition index.ts:22
RailFenceCipher
Definition index.ts:22
TapCodeCipher
Definition index.ts:23
PigpenCipher
Definition index.ts:21
KeywordCipher
Definition index.ts:20
BifidCipher
Definition index.ts:19
RouteCipher
Definition index.ts:22
DoubleTranspositionCipher
Definition index.ts:19
AtbashCipher
Definition index.ts:17
NihilistCipher
Definition index.ts:21
BaseCipher
Definition index.ts:13
ROT13Cipher
Definition index.ts:22
Common interface that all cipher implementations must follow.