CMC Examples Getting Subsystem Certificate - dogtagpki/pki GitHub Wiki

Getting Subsystem Certificate

  • Generate a PKCS10 request

    • Note: make sure the subject name is as intended.

$ PKCS10Client -d . -p netscape -n "CN=Subsystem Certificate,OU=pki-tomcat,O=mySecurityDomain" -o sys_subsystem_pkcs10.req

PKCS10Client: Debug: got token.
PKCS10Client: Debug: thread token set.
PKCS10Client: token Internal Key Storage Token logged in...
PKCS10Client: key pair generated.
PKCS10Client: CertificationRequest created.
PKCS10Client: b64encode completes.
Keypair private key id: 2b49b42471ea7d42153bdb06344a8786cedd3169

-----BEGIN CERTIFICATE REQUEST-----
MIIClTCCAX0CAQAwUDEZMBcGA1UECgwQbXlTZWN1cml0eURvbWFpbjETMBEGA1UECwwKcGtpLXRvbWNh
<snip>
-----END CERTIFICATE REQUEST-----
PKCS10Client: done. Request written to file: sys_subsystem_pkcs10.req
  • Edit the CMCRequest cfg file to make sure that

  • Generate the CMC request

$ CMCRequest cmc.sys_subsystem_pkcs10.cfg

cert/key prefix =
path = /root/cfu/test/cmc/
CryptoManger initialized
token internal logged in...
got signerCert: PKI Administrator for unknown00262DFC6A5E
createPKIData: begins
k=0
createPKIData:  format: pkcs10
PKCS10: PKCS10: begins
PKCS10: PKCS10: ends
selfSign is false...
signData: begins:
getPrivateKey: got signing cert
signData:  got signer privKey
createSignedData: begins
getSigningAlgFromPrivate: begins.
getSigningAlgFromPrivate: found signingKeyType=RSA
getSigningAlgFromPrivate: using SignatureAlgorithm: RSASignatureWithSHA256Digest
createSignedData: digest created for pkidata
createSignedData: digest algorithm =RSA
createSignedData: building cert chain
signData: signed request generated.
getCMCBlob: begins
getCMCBlob: generating signed data

The CMC enrollment request in base-64 encoded format:

MIIM2gYJKoZIhvcNAQcCoIIMyzCCDMcCAQMxDzANBglghkgBZQMEAgEFADCCAsAG
<snip>
The CMC enrollment request in data format is stored in /root/cfu/test/cmc/cmc.sys_subsystem_pkcs10.req.
  • Submit the CMC request

    • make sure the nickname contains the signing agent’s certificate nickname

    • make sure secure=true and clientmode=true

    • make sure servlet=/ca/ee/ca/profileSubmitCMCFullSubsystemCert

    • example: HttpClient_sys_subsystem.cfg

$ HttpClient HttpClient_sys_subsystem.cfg

Total number of bytes read = 3294
after SSLSocket created, thread token is Internal Key Storage Token
client cert is not null
handshake happened
writing to socket
Total number of bytes read = 2567
MIIKAwYJKoZIhvcNAQcCoIIJ9DCCCfACAQMxDzANBglghkgBZQMEAgEFADAxBggr
<snip>
The response in data format is stored in /root/cfu/test/cmc/cmc.sys_subsystem_pkcs10.resp
  • Check the result: (note that the response is a PKCS#7 cert chain in the success case)

$ CMCResponse -d . -i /root/cfu/test/cmc/cmc.sys_subsystem_pkcs10.resp
Certificates:
    Certificate:
        Data:
            Version:  v3
            Serial Number: 0x46
            Signature Algorithm: SHA256withRSA - 1.2.840.113549.1.1.11
            Issuer: CN=CA Signing Certificate,OU=pki-tomcat,O=unknown00262DFC6A5E Security Domain
            Validity:
                Not Before: Thursday, July 6, 2017 11:04:48 AM PDT America/Los_Angeles
                Not  After: Wednesday, June 26, 2019 11:04:48 AM PDT America/Los_Angeles
            Subject: CN=Subsystem Certificate,OU=pki-tomcat,O=mySecurityDomain
<snip>
Number of controls is 1
Control #0: CMCStatusInfoV2
   OID: {1 3 6 1 5 5 7 7 25}
   BodyList: 1
   Status: SUCCESS
⚠️ **GitHub.com Fallback** ⚠️