| org.bouncycastle.util.encoders.Translator
All known Subclasses: org.bouncycastle.util.encoders.HexTranslator,
Translator | public interface Translator (Code) | | general interface for an translator.
|
Method Summary | |
public int | decode(byte[] in, int inOff, int length, byte[] out, int outOff) | public int | encode(byte[] in, int inOff, int length, byte[] out, int outOff) | public int | getDecodedBlockSize() size of the output block on decoding produced by getEncodedBlockSize()
bytes. | public int | getEncodedBlockSize() size of the output block on encoding produced by getDecodedBlockSize()
bytes. |
decode | public int decode(byte[] in, int inOff, int length, byte[] out, int outOff)(Code) | | |
encode | public int encode(byte[] in, int inOff, int length, byte[] out, int outOff)(Code) | | |
getDecodedBlockSize | public int getDecodedBlockSize()(Code) | | size of the output block on decoding produced by getEncodedBlockSize()
bytes.
|
getEncodedBlockSize | public int getEncodedBlockSize()(Code) | | size of the output block on encoding produced by getDecodedBlockSize()
bytes.
|
|
|