ENGINE: Migrated Enrollment Logic

This commit is contained in:
2025-10-29 16:40:53 -06:00
parent 8fa7bd4fb0
commit 833c4b7d88
23 changed files with 1881 additions and 44 deletions

View File

@@ -0,0 +1,30 @@
# ======================================================
# Data\Engine\crypto\__init__.py
# Description: Engine cryptographic helpers and key utilities.
#
# API Endpoints (if applicable): None
# ======================================================
"""Cryptographic helper utilities for the Borealis Engine runtime."""
from .keys import (
generate_ed25519_keypair,
normalize_base64,
spki_der_from_base64,
base64_from_spki_der,
fingerprint_from_spki_der,
fingerprint_from_base64_spki,
private_key_to_pem,
public_key_to_pem,
)
__all__ = [
"generate_ed25519_keypair",
"normalize_base64",
"spki_der_from_base64",
"base64_from_spki_der",
"fingerprint_from_spki_der",
"fingerprint_from_base64_spki",
"private_key_to_pem",
"public_key_to_pem",
]