Package org.bouncycastle.util.encoders
Interface Encoder
-
- All Known Implementing Classes:
Base64Encoder,HexEncoder,UrlBase64Encoder
public interface EncoderEncode and decode byte arrays (typically from binary to 7-bit ASCII encodings).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intdecode(byte[] data, int off, int length, java.io.OutputStream out)intdecode(java.lang.String data, java.io.OutputStream out)intencode(byte[] data, int off, int length, java.io.OutputStream out)
-
-
-
Method Detail
-
encode
int encode(byte[] data, int off, int length, java.io.OutputStream out) throws java.io.IOException- Throws:
java.io.IOException
-
decode
int decode(byte[] data, int off, int length, java.io.OutputStream out) throws java.io.IOException- Throws:
java.io.IOException
-
decode
int decode(java.lang.String data, java.io.OutputStream out) throws java.io.IOException- Throws:
java.io.IOException
-
-