MCPcopy
hub / github.com/MetapriseAI/OrgKernel / get_org_ca_public_key_bytes

Function get_org_ca_public_key_bytes

src/orgkernel/crypto_utils.py:53–56  ·  view source on GitHub ↗

Return the raw 32-byte Ed25519 public key of the Org CA.

()

Source from the content-addressed store, hash-verified

51
52
53def get_org_ca_public_key_bytes() -> bytes:
54 """Return the raw 32-byte Ed25519 public key of the Org CA."""
55 _, public_bytes = _ensure_ca_keypair()
56 return public_bytes
57
58
59def compute_ca_fingerprint(public_key_bytes: bytes | None = None) -> str:

Callers 1

verify_certificateMethod · 0.90

Calls 1

_ensure_ca_keypairFunction · 0.85

Tested by

no test coverage detected