encoding.base64 Package
Function Description
The base package provides Base64 encoding and decoding for strings.
Base64 encoding can convert binary data into a text consisting of only 64 printable characters (A to Z, a to z, 0 to 9, +, and /), enabling secure transmission and storage of binary data in a text environment.
API List
Function
Name | Description |
---|---|
fromBase64String(String) | Decodes a Base64-encoded string. |
toBase64String(Array<Byte>) | Converts a character array into a Base64-encoded string. |