Example usage for Java com.amazonaws.util Base64 fields, constructors, methods, implement or subclass
The text is from its open source code.
byte[] | decode(String b64) Decodes the given base 64 encoded string, skipping carriage returns, line feeds and spaces as needed. |
byte[] | decode(byte[] b64) Decodes the given base 64 encoded bytes. |
byte[] | encode(byte[] bytes) Returns a 64 encoded byte array of the given bytes. |
String | encodeAsString(byte... bytes) Returns a base 64 encoded string of the given bytes. |