Method Summary |
|
final public static byte[] | base64Decode(byte[] data) This method decodes the given byte[] using the base64-encoding
specified in RFC-2045 (Section 6.8).
Parameters: data - the base64-encoded data. |
final public static String | base64Decode(String str) This method decodes the given string using the base64-encoding
specified in RFC-2045 (Section 6.8).
Parameters: str - the base64-encoded string. |
final public static byte[] | base64Encode(byte[] data) This method encodes the given byte[] using the base64-encoding
specified in RFC-2045 (Section 6.8). |
final public static String | base64Encode(String str) This method encodes the given string using the base64-encoding
specified in RFC-2045 (Section 6.8). |