org.bouncycastle.util.encoders
Interface Encoder
- Base64Encoder, HexEncoder, UrlBase64Encoder
Encode and decode byte arrays (typically from binary to 7-bit ASCII
encodings).
int | decode(String data, OutputStream out)
|
int | decode(byte[] data, int off, int length, OutputStream out)
|
int | encode(byte[] data, int off, int length, OutputStream out)
|
decode
public int decode(String data,
OutputStream out)
throws IOException
decode
public int decode(byte[] data,
int off,
int length,
OutputStream out)
throws IOException
encode
public int encode(byte[] data,
int off,
int length,
OutputStream out)
throws IOException