Package-level declarations
Types
Type alias representing a Base64-encoded string.
Type alias representing a Base64-encoded byte array.
This typealias shows that corresponding ByteArray is an raw data
This typealias shows that corresponding String is an raw data
Properties
Functions
Decodes this Base64-encoded byte array back to the original byte array.
Decodes this Base64-encoded string back to the original byte array.
Decodes this Base64-encoded byte array back to the original string.
Decodes this Base64-encoded string back to the original string.
Encodes this byte array to Base64 format, returning the result as a byte array.
Encodes this string to Base64 format, returning the result as a byte array.
Encodes this byte array to Base64 format, returning the result as a string.
Encodes this string to Base64 format, returning the result as a string.
Converts this byte array to a hexadecimal string representation (lowercase). Each byte is represented as two hex characters.
Converts this string to a hexadecimal representation by first encoding it as UTF-8 bytes.
Computes the MD5 hash of this byte array and returns it as a lowercase hex string.
Computes the MD5 hash of this string (encoded as UTF-8 bytes) and returns it as a lowercase hex string.