Artisan Hub 237 Certification Authority
Every certificate this platform issues carries an Ed25519 digital signature. The matching public key is published below, so a museum, insurer, auction house or customs office can verify a certificate themselves — offline, without asking us and taking our word for it.
Public signing key
- Algorithm
- EdDSA / Ed25519 (RFC 8032)
- Key ID
- 834D8B4A0D21FB408ECD369DCE2BA8E2
Public key (base64url)
87S7snKy7fKiLbc_SPLnShYfTOQ0J4J0l0f_PjPDJwg
Standard JOSE form (RFC 8037): kty OKP, crv Ed25519. Pin this key once — it changes only at an announced key ceremony.
Verify a certificate yourself
The signed message is rebuilt from the fields printed on the certificate, newline-separated, in exactly this order:
ah237.certificate.v1
<type> # coa, otc, prc or avc
<certificate number>
<content hash>
<issue date, ISO 8601>
Then check the detached signature against the public key. For example:
# Python, with PyNaCl from nacl.signing import VerifyKey import base64 def b64u(s): return base64.urlsafe_b64decode(s + '=' * (-len(s) % 4)) key = VerifyKey(b64u("87S7snKy7fKiLbc_SPLnShYfTOQ0J4J0l0f_PjPDJwg")) payload = "\n".join([ "ah237.certificate.v1", "coa", certificate_number, content_hash, issued_at_iso8601, ]).encode() key.verify(payload, b64u(signature)) # raises if invalid
The full hashes and the exact issue date are shown on each certificate’s verification page.
Tamper-evident certificate log
Every certificate lifecycle event — issued, approved, revoked, verified — is appended to a hash chain in which each entry commits to the one before it. Altering or removing any past entry breaks every link after it.
- Entries verified
- 1
- Chain state
- Intact
Current chain head
53b9bcdb9d49b619385744ff87ecf6e088b75dc7a8693b7893b94931b695d2fb
Note this value: if history is rewritten later, it will no longer match.
Artisan Hub 237 is a private company. Its certificates attest to records made on the platform; they replace neither a title issued by a public authority, nor customs documents, nor any intellectual property right.