|
Asper Header
1.0.14
The header injector extension
|
Implementation of the Vigenère cipher. More...
Go to the source code of this file.
Data Structures | |
| class | VigenereCipher |
| Implementation of the Vigenère polyalphabetic substitution cipher. More... | |
Variables | |
| import { BaseCipher } from "../base/baseCipher" | |
Implementation of the Vigenère cipher.
The Vigenère cipher is a classic polyalphabetic substitution cipher that uses a repeating keyword to determine character shifts. Each letter is shifted according to the corresponding key letter (A=0, B=1, ..., Z=25). Named after Blaise de Vigenère, though actually invented by Giovan Bellaso.
Definition in file vigenere.ts.
| import { BaseCipher } from "../base/baseCipher" |
Definition at line 13 of file vigenere.ts.