Package co.ankatech.ankasecure.sdk.model
Class Pkcs12ImportSpec
Object
Pkcs12ImportSpec
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetKid()
Gets the key identifier (kid) to assign to the imported PKCS#12 key.Gets the Base64-encoded PKCS#12 file content.Gets the optional PKCS#12 password if the file is password-protected.void
Sets the key identifier (kid).void
setP12FileBase64
(String p12FileBase64) Sets the Base64-encoded PKCS#12 file content.void
setP12Password
(String p12Password) Sets the PKCS#12 password.
-
Constructor Details
-
Pkcs12ImportSpec
public Pkcs12ImportSpec()No-args constructor.
-
-
Method Details
-
getKid
Gets the key identifier (kid) to assign to the imported PKCS#12 key.- Returns:
- kid
-
setKid
Sets the key identifier (kid).- Parameters:
kid
- a string for the new key ID
-
getP12FileBase64
Gets the Base64-encoded PKCS#12 file content.- Returns:
- p12FileBase64
-
setP12FileBase64
Sets the Base64-encoded PKCS#12 file content.- Parameters:
p12FileBase64
- base64 string of the .p12 file
-
getP12Password
Gets the optional PKCS#12 password if the file is password-protected.- Returns:
- p12Password
-
setP12Password
Sets the PKCS#12 password.- Parameters:
p12Password
- the password used for the PKCS#12 file, if any
-