Sample code for 30+ languages & platforms
Xojo Plugin

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 Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

Dim pfx As New 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.
Dim bd As New Chilkat.BinData
Dim bLoaded As Boolean
bLoaded = bd.LoadFile("qa_data/identity.pfx")
If (bLoaded <> True) Then
    System.DebugLog("Failed to load the PFX file.")
    Return
End If

//  The PFX password should come from a secure source rather than being hard-coded.
Dim password As String
password = "myPfxPassword"

//  Load the PFX / PKCS#12 container from the bytes held in the BinData.
success = pfx.LoadPfxBd(bd,password)
If (success = False) Then
    System.DebugLog(pfx.LastErrorText)
    Return
End If

System.DebugLog("Loaded " + Str(pfx.NumCerts) + " certificate(s).")