Xbase++
Xbase++
Load CMS PKCS#7 Certificate (.p7b)
See more Certificates Examples
Loads a digital certificate from a Cryptographic Message Syntax Standard PKCS7 (.p7b) file and fetches information about the cert.Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oCert
nSuccess := 0
oCert := CreateObject("Chilkat.Cert")
// LoadFromFile will load virtually any certificate format file.
// It will auto-recognize the format and load appropiately.
nSuccess := oCert:LoadFromFile("/Users/chilkat/testData/cer/chilkat.p7b")
IF (nSuccess != 1)
? oCert:LastErrorText
oCert:destroy()
RETURN
ENDIF
// DN = "Distinguished Name"
? "SubjectDN:" + oCert:SubjectDN
? "Common Name:" + oCert:SubjectCN
? "Issuer Common Name:" + oCert:IssuerCN
? "Serial Number:" + oCert:SerialNumber
oCert:destroy()