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
(VB.NET UWP/WinRT) Load Certs from Java KeyStore into Trusted CA RootsDemonstrates how to load a Java KeyStore containing CA root certificates that are to be trusted by the application. This can be done once at the beginning of an application, and then the trusted roots can be activated so that only these root CA certs are trusted by the application for any TLS connections.
' This requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim jks As New Chilkat.JavaKeyStore jks.VerboseLogging = True Dim password As String = "myPassword" Dim success As Boolean = jks.LoadFile(password,"qa_data/jks/entrust_caCerts.jks") If (success <> True) Then Debug.WriteLine(jks.LastErrorText) Exit Sub End If Dim troots As New Chilkat.TrustedRoots troots.VerboseLogging = True success = Await troots.AddJavaKeyStoreAsync(jks) If (success <> True) Then Debug.WriteLine(troots.LastErrorText) Exit Sub End If Dim i As Integer = 0 Dim numCerts As Integer = troots.NumCerts While (i < numCerts) Dim cacert As Chilkat.Cert = troots.GetCert(i) Debug.WriteLine(i & ": " & cacert.SubjectDN) i = i + 1 End While ' Activate this specific set of trusted roots. success = troots.Activate() If (success <> True) Then Debug.WriteLine(troots.LastErrorText) Exit Sub End If ' Output: ' 0: C=US, O=Entrust.net, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Secure Server Certification Authority ' 1: O=Entrust.net, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Certification Authority (2048) ' 2: C=US, O="Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, OU="(c) 2006 Entrust, Inc.", CN=Entrust Root Certification Authority |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.