public interface Base64Processor
| 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
|
byte[] decode(byte[] encodedBytes)
throws Base64Exception
encodedBytes - Base64 encoded bytes arrayBase64Exceptionbyte[] encode(byte[] rawBytes)
throws Base64Exception
rawBytes - raw bytes arrayBase64Exceptionjava.lang.String encodeToString(byte[] rawBytes)
throws Base64Exception
rawBytes - raw bytes arrayBase64Exception