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