Home / Registry / Certificate
Certificate · Ed25519 · verified

Certificate

A signed certificate for Cognizant Business Consulting UK, UK·BAR·SMB, 2026-Q2. Its signature is checked below against the committed public key — no trust in this site required.

Signature verifies

The signature is valid for this record under the public key below, checked at build time with Ed25519. Altering any field would break it. Key publishing key · ed25519. The publishing key is issued per GOVERNANCE §3.

The record

A certificate restates a computed position. These are the fields the signature covers — nothing here is set by hand.

Registry id
CNST-2026-Q2-UK-BAR-SMB-R02-7FC8
Firm
Cognizant Business Consulting UK · cognizant-consulting-uk
Table
UK · BAR · SMB
Period
2026-Q2
Rank
R02
Score
86.58
Rules version
v1.1
Dataset
snapshot/2026-Q2

Step 1 — the canonical payload

The record is reduced to one, and only one, byte encoding: keys sorted, numbers rounded, compact separators (engine/canonical.py). This is what is signed, so the same record yields the same bytes on any machine.

{"category":"BAR","dataset_tag":"snapshot/2026-Q2","firm":"cognizant-consulting-uk","firm_name":"Cognizant Business Consulting UK","geo":"UK","milestone":null,"period":"2026-Q2","rank":2,"registry_id":"CNST-2026-Q2-UK-BAR-SMB-R02-7FC8","rules_version":"1.1","score":86.58,"tier":"smb"}

Step 2 — the signature and public key

The key signs the canonical payload with Ed25519; the signature and the public half of the key travel with the record. Only the public key is committed — private keys never enter the repository.

Algorithm
ed25519
Signature
b3310d3ecdef38de2b6ba8f987b63fb2b2841a3988c1f05b02bdb35eaf4553d50a8c15755d0fdbefb343677ad36c39e56de0b6501bdc52833b7c23c80c85940d
Public key
f3df0e590092d318ce6e4bc92676d4b9ec3111d173bd1c56809f68047a57f6bf

Step 3 — check it offline

With the record, the signature, and the committed public key, verification needs no network and no trust in this site. Reconstruct the payload with the engine and check the signature:

python -c "import json,sign; from schemas import AwardRecord; \
r=AwardRecord.model_validate(json.load(open('CNST-2026-Q2-UK-BAR-SMB-R02-7FC8.json'))); \
print(sign.verify_award(r))"
# → True  (or False)

A passing check confirms the record was signed by the committed key and has not been altered by a single byte. The signature authenticates the record; it is not part of the computation, so determinism holds with or without it.