Base64Decoder
(Engine-Level Function)
Description: | Performs a Base64 decode of a buffer. |
Returns: | Text |
Usage: | Script or Steady State |
Function Groups: | Encryption |
Related to: | Base64Encoder | Hash |
Format: | Base64Decoder(Buffer); |
Parameters: |
Buffer |
Required. The encoded value. |
Comments: |
This function complies with IETF RFC4648 and RFC2045 . Returns Invalid if the input buffer is invalid. Whitespace characters will be ignored rather than cause failure. |
Example:
If Valid(EncodedValue); [ DecodedValue = Base64Decoder(EncodedValue); EncodedValue = Invalid; ]