CryptoException
classin packageklyn.cryptography
public class CryptoException extends Exception:
Exception raised when a cryptographic operation cannot be completed.
This includes unsupported algorithms, invalid encodings, malformed keys,
authentication tag mismatches and low-level runtime/provider errors.
import klyn.cryptography
try:
Hex.decodeToText("xyz")
catch ex as CryptoException:
print(ex.message)
Constructors
| Modifier and Type |
Member |
Description |
| public |
CryptoException |
Creates a new cryptography exception. |