Java org.bouncycastle.util.encoders Hex fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.util.encoders Hex fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.util.encoders Hex.

The text is from its open source code.

Constructor

Method

byte[]decode(byte[] data)
decode the Hex encoded input data.
byte[]decode(String data)
decode the Hex encoded String data - whitespace will be ignored.
byte[]encode(byte[] data)
encode the input data producing a Hex encoded byte array.
intencode(byte[] data, OutputStream out)
Hex encode the byte data writing it to the given output stream.
byte[]encode(byte[] data, int off, int length)
encode the input data producing a Hex encoded byte array.
StringtoHexString(byte[] data)
StringtoHexString(byte[] data, int off, int length)