ENGINE: Moved Certificate Store Location

This commit is contained in:
2025-10-29 00:25:30 -06:00
parent 4478f7c33b
commit 11a08f04a8
7 changed files with 519 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
# ======================================================
# Data\Engine\security\__init__.py
# Description: Exposes Engine-specific security helpers including TLS certificates and code-signing utilities.
#
# API Endpoints (if applicable): None
# ======================================================
"""Security helper exports for the Borealis Engine runtime."""
from . import certificates, signing
__all__ = ["certificates", "signing"]