| java.lang.Object org.bouncycastle.util.encoders.Base64Encoder
All known Subclasses: org.bouncycastle.util.encoders.UrlBase64Encoder,
Method Summary | |
public int | decode(byte[] data, int off, int length, OutputStream out) decode the base 64 encoded byte data writing it to the given output stream,
whitespace characters will be ignored. | public int | decode(String data, OutputStream out) decode the base 64 encoded String data writing it to the given output stream,
whitespace characters will be ignored. | public int | encode(byte[] data, int off, int length, OutputStream out) encode the input data producing a base 64 output stream. | protected void | initialiseDecodingTable() |
decodingTable | final protected byte[] decodingTable(Code) | | |
encodingTable | final protected byte[] encodingTable(Code) | | |
padding | protected byte padding(Code) | | |
Base64Encoder | public Base64Encoder()(Code) | | |
decode | public int decode(byte[] data, int off, int length, OutputStream out) throws IOException(Code) | | decode the base 64 encoded byte data writing it to the given output stream,
whitespace characters will be ignored.
the number of bytes produced. |
decode | public int decode(String data, OutputStream out) throws IOException(Code) | | decode the base 64 encoded String data writing it to the given output stream,
whitespace characters will be ignored.
the number of bytes produced. |
encode | public int encode(byte[] data, int off, int length, OutputStream out) throws IOException(Code) | | encode the input data producing a base 64 output stream.
the number of bytes produced. |
initialiseDecodingTable | protected void initialiseDecodingTable()(Code) | | |
|
|