Java com.amazonaws.util Base64 fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.util Base64 fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.util Base64.

The text is from its open source code.

Method

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.
StringencodeAsString(byte... bytes)
Returns a base 64 encoded string of the given bytes.