|
Asper Header
1.0.14
The header injector extension
|
Implementation of Base64 encoding and decoding. More...


Public Member Functions | |
| constructor () | |
| Constructor for Base64 encoder/decoder. | |
Data Fields | |
| readonly | CipherName = "Base64" |
| Identifier name for this encoding scheme. | |
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. | |
Implementation of Base64 encoding and decoding.
Base64 uses 64 ASCII characters (A-Z, a-z, 0-9, +, /) to represent binary data. Each character represents 6 bits, and padding with '=' characters ensures the output length is a multiple of 4.
|
inline |
| readonly Base64Cipher::CipherName = "Base64" |