Return the raw 32-byte Ed25519 public key of the Org CA.
()
| 51 | |
| 52 | |
| 53 | def 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 | |
| 59 | def compute_ca_fingerprint(public_key_bytes: bytes | None = None) -> str: |
no test coverage detected