Importing a private key via API (PKCS #12)¶
The imports
function allows you to programmatically import private keys with their corresponding certificates into the TLS Protect Cloud platform. This feature allows customers to import private keys and certificates that would enable them to use the Push Provisioning feature for non-ASK certificates and would also allow them to use TLS Protect Cloud as an enterprise vault for their machine identities.
Important
Before attempting this import, ensure you have added your corresponding certificate chain into a trusted CA certificate in TLS Protect Cloud. Learn more about Trusted CA Certificates.
Before you begin¶
Having knowledge of Data Encryption Key (DEK) encryption is a prerequisite for this API. To learn more about DEK encryption, see our docs. Some things to note in the POST request:
-
The value for
pkcs12Keystore
must be a base64 encoded file. -
The values for
encryptionKeyId
&edgeInstanceId
must be provided for theimports
function to work. - Refer to this Recipe to learn how to encrypt the password.
Note
PKCS #12 (also known as PKCS12 or PFX) is a binary format for storing a certificate chain and private key in a single, encryptable file that usually has the filename extensions of .p12
or .pfx
.
To import a list of certificates and their corresponding private keys
-
If you have not already done so, obtain an API key.
-
Use the
imports
function to import up to 100 private keys in a single API call. For example:POST https://api.venafi.cloud/outagedetection/v1/certificates/imports tppl-api-key: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
-
In the JSON body, insert the appropriate values. Note that
importInformation
is an array, and it can have multiple objects. Each object represents a key and related information. For example:Tip
You can run the GET
/v1/edgeinstances
call to retrieve theedgeInstanceId
andencryptionKeyId
values that you will need below. Note in the GET/v1/edgeinstances
response you will useid
in theedgeinstances
object for theedgeInstanceId
.GET /v1/edgeinstances/ HTTP/1.1 Host: api.venafi.cloud tppl-api-key: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Example request
{ "edgeInstanceId": "<your edgeInstanceId>", "encryptionKeyId": "<your encryptionKeyId>", "importInformation": [ { "pkcs12Keystore": "<base64 encoded string>", "dekEncryptedPassword": "BNSr0IAm9uFrCPbz78AbB/XeNBwT4h6raWX6EEuEtzuoaKRYtV3QGShQP0islB1Gnrt34XeQa5Is" } ] }
Example response
HTTP 201 Created { "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "creationDate": "2022-11-11T16:34:41.666Z" }
The response will return the job
id
, which you will use to check the import status below. There is a limit of 100 keys per API call. The API will respond with an error if you input more than 100 keys.Check the status of the import and retrieve import details
-
Use the
imports
api to get detailed information for each certificate and private key imported related to the importid
. For example:GET https://api.venafi.cloud/outagedetection/v1/certificates/imports/3fa85f64-5717-4562-b3fc-2c963f66afa6 tppl-api-key: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
Example response
HTTP 200 Created { "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "status": "PROCESSING", "results": [ { "certificateBytes": [ "string" ], "fingerprint": "string", "status": "IMPORTED", "reason": "string" } ] }