Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Load PFX with Different Password for Private KeysDemonstrates how to load a PFX where the HMAC integrity password (the password for the entire PFX) is different than the password for the private keys contained inside. Note: This example requires a new feature made available in Chilkat v9.5.0.75.
Dim pfx As Chilkat.Pfx Set pfx = Chilkat.NewPfx Dim json As Chilkat.JsonObject Set json = Chilkat.NewJsonObject ' Build JSON containing the HMAC integrity (PFX) password, and the ' password for the private keys. Dim success As Boolean success = json.UpdateString("integrity","password1") success = json.UpdateString("privKeys","password2") ' The JSON contains this: ' ' { ' "integrity": "password1", ' "privKeys": "password2" ' } ' ' Use the above JSON instead of a simple password string when loading the PFX: success = pfx.LoadPfxFile("qa_data/pfx/PrivateKeyPassIsDifferent.pfx",json.Emit()) If (success <> True) Then Debug.Print pfx.LastErrorText Exit Sub End If Debug.Print "Success." |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.