QUICK STARTS

Complete the first controlled operation—not just a five-line checklist.

Quick starts now link to compilable samples, exact API sequences and the documentation required to understand the result.

01

Windows CNG/KSP — first signature

1. Verify signed package checksum
2. Install provider package
3. Confirm provider registration
4. Create/open non-exportable key
5. Generate or bind certificate
6. Sign digest with NCryptSignHash
7. Verify signature
8. Collect event log and rollback result

Open NCrypt guide →

02

PKCS#11 — first signature

C_Initialize → C_GetSlotList → C_OpenSession → C_Login
→ C_FindObjects* → C_SignInit → C_Sign
→ C_VerifyInit → C_Verify → cleanup

Open PKCS#11 guide →

03

Trusted SIC API — first request

POST /v1/signing-requests
Authorization: Bearer ...
Idempotency-Key: ...
X-Correlation-Id: ...

Then read the resource lifecycle before retrying.

Explore API documentation →