Hex
classin packageklyn.cryptography
public class Hex:
Hex
Hexadecimal text helpers.
import klyn.cryptography

hexValue = Hex.encodeText("hello")
print(Hex.decodeToText(hexValue))
Methods
Modifier and Type Member Description
public static decodeToText
decodeToText(value as String) as String throws CryptoException:
Decodes a hexadecimal string to text.
public static encodeText
encodeText(text as String) as String throws CryptoException:
Encodes a text value as hexadecimal.