Decodes a Base64 encoded string and returns the decoded data as a string.
Source position: base64.pp line 108
function DecodeStringBase64( |
const s: AnsiString; |
strict: Boolean = False |
):AnsiString; |
s |
|
The base64 encoded string to decode. |
strict |
|
Choose between strict base64 decoding or MIME decoding. |
The base64 decoded version of S.
DecodeStringBase64 decodes the string s (containing Base 64 encoded data) returns the decoded data as a string. It uses a TBase64DecodingStream to do this. The Strict parameter is passed on to the constructor as bdmStrict or bdmMIME
|
Decodes a Base64 encoded string and returns the decoded data as a string. |
|
|
Base64 Decoding stream. |