public class Base64Utils
extends java.lang.Object
Constructor and Description |
---|
Base64Utils() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decodeBase64String(java.lang.String b64String)
Method to decode a base64 encoded string.
|
static java.lang.String |
encodeBase64String(byte[] data)
Help method to encode the data into a hexadecimal String
|
public static java.lang.String encodeBase64String(byte[] data)
data
- the data to hex encodepublic static byte[] decodeBase64String(java.lang.String b64String)
b64String
- the base64 string to decode