Class Pkcs12ImportSpec

Object
Pkcs12ImportSpec

public class Pkcs12ImportSpec extends Object

Pkcs12ImportSpec holds the information required to import a private key from a PKCS#12 (.p12) file, provided in Base64-encoded form. This is commonly used for importing certificates and their private keys in a single bundle.

Example usage:


 Pkcs12ImportSpec p12Spec = new Pkcs12ImportSpec();
 p12Spec.setKid("myPkcs12Key");
 p12Spec.setP12FileBase64("BASE64_ENCODED_P12_CONTENT");
 p12Spec.setP12Password("optionalPassword");

 sdk.importPrivateKeyPkcs12(p12Spec);
 

Example JSON (if serialized):


 {
   "kid": "myPkcs12Key",
   "p12FileBase64": "BASE64-ENCODED-PKCS12-FILE",
   "p12Password": "optionalPassword"
 }
 

  • Constructor Details

    • Pkcs12ImportSpec

      public Pkcs12ImportSpec()
      No-args constructor.
  • Method Details

    • getKid

      public String getKid()
      Gets the key identifier (kid) to assign to the imported PKCS#12 key.
      Returns:
      kid
    • setKid

      public void setKid(String kid)
      Sets the key identifier (kid).
      Parameters:
      kid - a string for the new key ID
    • getP12FileBase64

      public String getP12FileBase64()
      Gets the Base64-encoded PKCS#12 file content.
      Returns:
      p12FileBase64
    • setP12FileBase64

      public void setP12FileBase64(String p12FileBase64)
      Sets the Base64-encoded PKCS#12 file content.
      Parameters:
      p12FileBase64 - base64 string of the .p12 file
    • getP12Password

      public String getP12Password()
      Gets the optional PKCS#12 password if the file is password-protected.
      Returns:
      p12Password
    • setP12Password

      public void setP12Password(String p12Password)
      Sets the PKCS#12 password.
      Parameters:
      p12Password - the password used for the PKCS#12 file, if any