Paste any Sealed for AI seal ID or hash. Anyone can verify — no account required.
Try the prefilled value — it's a real seal from our flagship customer.
For independent verification (auditor / forensic / regulator workflow):
# Ed25519 signature verification, no EpochCore software needed
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PublicKey
import base64
seal = fetch_seal("EP-DKAP-...") # via /api/verify
pubkey = Ed25519PublicKey.from_public_bytes(
base64.b64decode(seal["signing_public_key_b64"])
)
signature = base64.b64decode(seal["signature_b64"])
message = bytes.fromhex(seal["full_hash"])
pubkey.verify(signature, message) # raises if invalid
Full verification flow: docs.