Xojo Plugin
Xojo Plugin
Load a Certificate from the Windows Certificate Store
See more Certificates Examples
Demonstrates how to load a certificate that has been pre-installed in the registry-based Windows certificate store. This is generally how one would load a certificate that is stored on a smart card or usb token.Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
Dim cert As New Chilkat.Cert
success = cert.LoadByCommonName("PIVKey 7ED53EC611D3F84396212C5842BB563F")
If (success <> True) Then
System.DebugLog(cert.LastErrorText)
Return
End If
System.DebugLog("Loaded: " + cert.SubjectDN)