Package-level declarations
Cross-platform encoding utilities and API.
Types
DefaultBase64 is now the default implementation.
Specifies the expected API interface for an encoding tool, which is capable of encoding data to a given format or expression, as well as decoding from that same format.
Describes a component of a Codec, or a generic data object that can identify an Encoding. Raw data outputs are also CodecIdentifiable by default.
Specifies the interface which encoded data value classes comply with; each encoded data class indicates its encoding, and provides a means for decoding to/from strings.
DefaultHex is now the default implementation.
Functions
Encode the current ByteArray to a Base64 byte array wrapped using an encoded data record.
Encode the current String to a Base64 byte array, using the cross-platform DefaultBase64 tools.
Encode the current ByteArray to a Base64 byte array, using the cross-platform DefaultBase64 tools.
Encode the current String to a Base64 byte array, using the cross-platform DefaultBase64 tools.
Encode the current ByteArray to a Base64 string, using the cross-platform DefaultBase64 tools.
Encode the current String to a Base64 string, using the cross-platform DefaultBase64 tools.
Encode the current ByteArray to a hex-encoded byte array, using the cross-platform DefaultHex tools.
Encode the current String to a hex-encoded byte array, using the cross-platform DefaultHex tools.
Encode the current ByteArray to a hex-encoded string, using the cross-platform DefaultHex tools.
Encode the current String to a hex-encoded string, using the cross-platform DefaultHex tools.