e-CryptIt Engine Xojo Plugin |
|
Base64Stream.Constructor Constructor
The default constructor for the Base64Stream class that optionally takes urlMode Boolean parameter.

Constructor(
extraChar
as Integer,
extraCharInterval
as Integer,
urlMode
as Boolean)
Parameters
- extraChar
- The extra char to add when encoding or remove when decoding.
- extraCharInterval
- This parameter determines how often to add the extra char. This parameter only affects encoding because when decoding this will automatically be determined depending on the data that you are decoding. If this parameter is set to a value less than 10 then it will be set to the default value (76).
- urlMode
- If set to true then Base64 will be in URL mode.
Remarks
The default constructor sets xtraChar is set to 13 (CR) and extraCharInterval to 76.
Base64URL is a modification of the main Base64 standard, the purpose of which is the ability to use the encoding result as filename or URL address. The Base64URL is described in RFC 4648.
See Also
Base64Stream Class