| java.lang.Object org.bouncycastle.util.encoders.HexTranslator
HexTranslator | public class HexTranslator implements Translator(Code) | | Converters for going from hex to binary and back. Note: this class assumes ASCII processing.
|
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.
|
|
|