|
Bouncy Castle Cryptography Library 1.81 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.bouncycastle.util.encoders.Base64
Utility class for converting Base64 data to bytes and back again.
Constructor Summary | |
Base64()
|
Method Summary | |
static byte[] |
decode(byte[] data)
decode the base 64 encoded input data. |
static int |
decode(byte[] base64Data,
int start,
int length,
java.io.OutputStream out)
Decode to an output stream; |
static byte[] |
decode(java.lang.String data)
decode the base 64 encoded String data - whitespace will be ignored. |
static int |
decode(java.lang.String data,
java.io.OutputStream out)
decode the base 64 encoded String data writing it to the given output stream, whitespace characters will be ignored. |
static byte[] |
encode(byte[] data)
encode the input data producing a base 64 encoded byte array. |
static byte[] |
encode(byte[] data,
int off,
int length)
encode the input data producing a base 64 encoded byte array. |
static int |
encode(byte[] data,
int off,
int length,
java.io.OutputStream out)
Encode the byte data to base 64 writing it to the given output stream. |
static int |
encode(byte[] data,
java.io.OutputStream out)
Encode the byte data to base 64 writing it to the given output stream. |
static java.lang.String |
toBase64String(byte[] data)
|
static java.lang.String |
toBase64String(byte[] data,
int off,
int length)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Base64()
Method Detail |
public static java.lang.String toBase64String(byte[] data)
public static java.lang.String toBase64String(byte[] data, int off, int length)
public static byte[] encode(byte[] data)
public static byte[] encode(byte[] data, int off, int length)
public static int encode(byte[] data, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static int encode(byte[] data, int off, int length, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static byte[] decode(byte[] data)
public static byte[] decode(java.lang.String data)
public static int decode(java.lang.String data, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static int decode(byte[] base64Data, int start, int length, java.io.OutputStream out)
base64Data
- The source data.start
- Start position.length
- the length.out
- The output stream to write to.
|
Bouncy Castle Cryptography Library 1.81 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |