static byte[] |
Base64.decode(byte[] base64) |
Deprecated.
Method decode
|
static void |
Base64.decode(byte[] base64Data,
java.io.OutputStream os) |
Deprecated.
Decodes Base64 data into outputstream
|
protected static void |
Base64.decode(byte[] base64Data,
java.io.OutputStream os,
int len) |
Deprecated.
|
static byte[] |
Base64.decode(java.io.BufferedReader reader) |
Deprecated.
Base64 decode the lines from the reader and return an InputStream
with the bytes.
|
static void |
Base64.decode(java.io.InputStream is,
java.io.OutputStream os) |
Deprecated.
Decodes Base64 data into outputstream
|
static byte[] |
Base64.decode(java.lang.String encoded) |
Deprecated.
Decodes Base64 data into octets
|
static void |
Base64.decode(java.lang.String base64Data,
java.io.OutputStream os) |
Deprecated.
Decodes Base64 data into outputstream
|
static byte[] |
Base64.decode(org.w3c.dom.Element element) |
Deprecated.
Method decode
Takes the Text children of the Element and interprets
them as input for the Base64.decode() function.
|
static java.math.BigInteger |
Base64.decodeBigIntegerFromElement(org.w3c.dom.Element element) |
Deprecated.
Method decodeBigIntegerFromElement
|
static java.math.BigInteger |
Base64.decodeBigIntegerFromText(org.w3c.dom.Text text) |
Deprecated.
Decode a base 64 string into a BigInteger
|
protected static byte[] |
Base64.decodeInternal(byte[] base64Data,
int len) |
Deprecated.
|