public static encodeText(text as String) as String throws CryptoException:
Encodes a text value as hexadecimal.
| Parameter | Description |
|---|---|
text | Source text. |
Lower-case hexadecimal text.
import klyn.cryptography
value = Hex.encodeText("hello")
print(value)