All Packages Class Hierarchy This Package Previous Next Index
Class org.doit.util.Base64
java.lang.Object
|
+----org.doit.util.Base64
- public class Base64
- extends Object
-
base64Decode(byte[])
- This method decodes the given byte[] using the base64-encoding
specified in RFC-2045 (Section 6.8).
-
base64Decode(String)
- This method decodes the given string using the base64-encoding
specified in RFC-2045 (Section 6.8).
base64Decode
public static final 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.
- Returns:
- the decoded str.
base64Decode
public static final 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.
- Returns:
- the decoded data.
All Packages Class Hierarchy This Package Previous Next Index