Xbase++
Xbase++
Load a PFX from BinData
See more PFX/P12 Examples
Demonstrates Pfx.LoadPfxBd, which loads a PFX / PKCS#12 container from the bytes held in a BinData object.
The file path is relative to the application's current working directory. An absolute path may also be used. Supply the path appropriate to your own environment.
Background. This is the in-memory equivalent of LoadPfxFile, for when the PKCS#12 data is already available as bytes rather than in a file.
Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oPfx
LOCAL oBd
LOCAL nBLoaded
LOCAL cPassword
nSuccess := 0
oPfx := CreateObject("Chilkat.Pfx")
// The file path is relative to the application's current working directory. An absolute path
// may also be used. Supply the path appropriate to your own environment.
// Load the PFX bytes into a BinData.
oBd := CreateObject("Chilkat.BinData")
nBLoaded := oBd:LoadFile("qa_data/identity.pfx")
IF (nBLoaded != 1)
? "Failed to load the PFX file."
oPfx:destroy()
oBd:destroy()
RETURN
ENDIF
// The PFX password should come from a secure source rather than being hard-coded.
cPassword := "myPfxPassword"
// Load the PFX / PKCS#12 container from the bytes held in the BinData.
nSuccess := oPfx:LoadPfxBd(oBd, cPassword)
IF (nSuccess == 0)
? oPfx:LastErrorText
oPfx:destroy()
oBd:destroy()
RETURN
ENDIF
? "Loaded " + Str(oPfx:NumCerts) + " certificate(s)."
oPfx:destroy()
oBd:destroy()