Knowledge base
1000 FAQs, 500 tutorials and explanatory videos. Here, there are only solutions!
Generate a 2048-bit .p12 certificate
This guide explains how to obtain an SSL certificate of type .p12 2048 bits , useful notably for SAP, Salesforce, etc. from the Infomaniak infrastructure.
Obtain a .p12 certificate
A p.12 certificate is a container that includes the certificate, the intermediate CAs and the key itself.
It is possible to create this type of certificate from what can be downloaded from the Infomaniak Manager:
- Order a certificate for the domain
sap.domain.xyz
by providing a CSR (which means having the private key with you, named for exampleserver.key
) - Download the generated certificate from the Manager Infomaniak:
sap.domain.xyz-15-03-2024.zip
- Unzip the archive
Run
openssl pkcs12 -export -out server.p12 -inkey server.key -in sap.domain.xyz.crt -certfile ca_bundle.crt
A server.p12
file will then be obtained.
If the certificate was generated without a CSR, it is the .key
file present in the downloaded zip that will serve as the key.
Link to this FAQ: