Welcome
This portal allows customers and partners to request access to the ProvenHSM sandbox.
You will be able to submit a CSR, track the request status, and receive your onboarding material once the sandbox is provisioned.
Before you start
- Generate your private key locally
- Generate a CSR from that private key
- Upload the CSR only — never upload the private key
CSR requirements
Please ensure your Certificate Signing Request (CSR) follows these rules:
- Common Name (CN): must follow
company-lastnameformat (e.g.airbus-dupont) - Organization (O): your company name (e.g. Airbus)
- Allowed characters: lowercase letters, numbers, hyphens only (
a-z0-9-) - Uniqueness: CN must be unique per user
⚠️ Important: Never share your private key. Only upload the CSR.
Example command
openssl req -newkey rsa:2048 -nodes \
-keyout client.key \
-out client.csr \
-subj "/C=FR/O=ProvenRun/OU=Sandbox/CN=provenrun-dupont"