public static encodeText(text as String) as String throws CryptoException:
Encodes a text value as standard Base64.
| Parameter | Description |
|---|---|
text | Source text. |
Standard Base64 text.
import klyn.cryptography
value = Base64.encodeText("hello")
print(value)