klyn.cryptography.Hex.encodeText
method
public static encodeText(text as String) as String throws CryptoException:
Description

Encodes a text value as hexadecimal.

Parameters
ParameterDescription
textSource text.
Returns

Lower-case hexadecimal text.

Throws
  • CryptoException on encoding failure.
Example
import klyn.cryptography

value = Hex.encodeText("hello")
print(value)