public static urlDecodeToText(value as String) as String throws CryptoException:
Decodes a URL-safe Base64 string to text.
| Parameter | Description |
|---|---|
value | URL-safe Base64 input. |
Decoded text.
import klyn.cryptography
value = Base64.urlEncodeText("hello")
print(Base64.urlDecodeToText(value))