- Change file mode from 644 to 755 for all project files - Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet" - Rename Miner.extra_meta_data to extra_metadata for consistency
27 lines
629 B
Python
Executable File
27 lines
629 B
Python
Executable File
"""
|
|
AITBC CLI Security Module
|
|
|
|
Security controls and policies for CLI operations, including
|
|
translation security, input validation, and operation auditing.
|
|
"""
|
|
|
|
from .translation_policy import (
|
|
CLITranslationSecurityManager,
|
|
SecurityLevel,
|
|
TranslationMode,
|
|
cli_translation_security,
|
|
secure_translation,
|
|
configure_translation_security,
|
|
get_translation_security_report
|
|
)
|
|
|
|
__all__ = [
|
|
"CLITranslationSecurityManager",
|
|
"SecurityLevel",
|
|
"TranslationMode",
|
|
"cli_translation_security",
|
|
"secure_translation",
|
|
"configure_translation_security",
|
|
"get_translation_security_report"
|
|
]
|