The SECURITY module provides core functionality for keyleak.
pip install keyleakfrom keyleak.SECURITY import Handler
handler = Handler()
await handler.execute()| Parameter | Type | Default | Description |
|---|---|---|---|
| timeout | int | 30 | Operation timeout in seconds |
| retries | int | 3 | Number of retry attempts |
| verbose | bool | False | Enable verbose logging |
Execute the operation with optional arguments.
Returns: Any - The operation result.
Raises: RuntimeError - If the operation fails after retries.