Java org.apache.shiro.codec Hex fields, constructors, methods, implement or subclass

Example usage for Java org.apache.shiro.codec Hex fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.shiro.codec Hex.

The text is from its open source code.

Method

byte[]decode(byte[] array)
Converts an array of character bytes representing hexadecimal values into an array of bytes of those same values.
byte[]decode(String hex)
Converts the specified Hex-encoded String into a raw byte array.
byte[]decode(char[] data)
Converts an array of characters representing hexadecimal values into an array of bytes of those same values.
char[]encode(byte[] data)
Converts an array of bytes into an array of characters representing the hexadecimal values of each byte in order.
StringencodeToString(byte[] bytes)
Encodes the specified byte array to a character array and then returns that character array as a String.