Codec
The Codec object offers various encoding and decoding functionality such as Base64 and Quoted-Printable.
Methods
|
Base64Decode
|
Base64 decodes the input and returns the string result.
|
|
Base64DecodeBytes
|
Base64 decodes the input and returns an array of bytes.
|
|
Base64Encode
|
Base64 encodes the input and returns the string result.
|
|
HMACMD5Encrypt
|
Performs a HMAC MD5 encryption on the input and returns a string result.
|
|
HTMLDecode
|
Decodes HTML entities into their respective characters.
|
|
HTMLEncode
|
Encodes specific characters into their respective HTML entities.
|
|
MD5Encrypt
|
Performs a MD5 encryption on the input and returns a string result.
|
|
QuotedPrintableDecode
|
Quoted-printable decodes the input and returns a string result.
|
|
QuotedPrintableEncode
|
Quoted-printable encodes the input and returns a string result.
|
|
URLDecode
|
URL decodes the input and returns a string result.
|
|
URLEncode
|
URL encodes the input and returns a string result.
|
|
XMLDecode
|
XML decodes the input and returns a string result.
|
|
XMLEncode
|
XML encodes the input and returns a string result.
|
|