org.bouncycastle.util.encoders
Interface Encoder
- All Known Implementing Classes:
- Base64Encoder, HexEncoder
- public interface Encoder
Encode and decode byte arrays (typically from binary to 7-bit ASCII
encodings).
Method Summary |
int |
decode(byte[] data,
int off,
int length,
java.io.OutputStream out)
|
int |
decode(java.lang.String data,
java.io.OutputStream out)
|
int |
encode(byte[] data,
int off,
int length,
java.io.OutputStream out)
|
encode
public int encode(byte[] data,
int off,
int length,
java.io.OutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
decode
public int decode(byte[] data,
int off,
int length,
java.io.OutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
decode
public int decode(java.lang.String data,
java.io.OutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException