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
- 00EC47DA577DE004F48CCFD22C1B2BF1
Public key (base64url)
JoT6ICuPVW_sYyYn94Ch5Y8BRUq4Pcyj10lWD0U_vpk
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("JoT6ICuPVW_sYyYn94Ch5Y8BRUq4Pcyj10lWD0U_vpk")) 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
- 32
- Chain state
- Intact
Current chain head
afb8a0519d4be7416aaf62ab9779c1b116ec6eb00d74b7e5b84b9f50585d3f06
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.