public class AndroidBase64Processor extends java.lang.Object implements Base64Processor
| Constructor and Description |
|---|
AndroidBase64Processor() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
decode(byte[] encodedBytes)
Decode Base64 encoded bytes array
|
byte[] |
encode(byte[] rawBytes)
Encode raw bytes array to Base64
|
java.lang.String |
encodeToString(byte[] rawBytes)
Encode raw bytes array to Base64 string
|
public byte[] decode(byte[] encodedBytes)
throws Base64Exception
Base64Processordecode in interface Base64ProcessorencodedBytes - Base64 encoded bytes arrayBase64Exceptionpublic byte[] encode(byte[] rawBytes)
throws Base64Exception
Base64Processorencode in interface Base64ProcessorrawBytes - raw bytes arrayBase64Exceptionpublic java.lang.String encodeToString(byte[] rawBytes)
throws Base64Exception
Base64ProcessorencodeToString in interface Base64ProcessorrawBytes - raw bytes arrayBase64Exception