|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Unicode C) 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. 
 #include <C_CkJavaKeyStoreW.h> #include <C_CkTrustedRootsW.h> #include <C_CkCertW.h> void ChilkatSample(void) { HCkJavaKeyStoreW jks; const wchar_t *password; BOOL success; HCkTrustedRootsW troots; int i; int numCerts; HCkCertW cacert; // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. jks = CkJavaKeyStoreW_Create(); CkJavaKeyStoreW_putVerboseLogging(jks,TRUE); password = L"myPassword"; success = CkJavaKeyStoreW_LoadFile(jks,password,L"qa_data/jks/entrust_caCerts.jks"); if (success != TRUE) { wprintf(L"%s\n",CkJavaKeyStoreW_lastErrorText(jks)); CkJavaKeyStoreW_Dispose(jks); return; } troots = CkTrustedRootsW_Create(); CkTrustedRootsW_putVerboseLogging(troots,TRUE); success = CkTrustedRootsW_AddJavaKeyStore(troots,jks); if (success != TRUE) { wprintf(L"%s\n",CkTrustedRootsW_lastErrorText(troots)); CkJavaKeyStoreW_Dispose(jks); CkTrustedRootsW_Dispose(troots); return; } i = 0; numCerts = CkTrustedRootsW_getNumCerts(troots); while ((i < numCerts)) { cacert = CkTrustedRootsW_GetCert(troots,i); wprintf(L"%d: %s\n",i,CkCertW_subjectDN(cacert)); CkCertW_Dispose(cacert); i = i + 1; } // Activate this specific set of trusted roots. success = CkTrustedRootsW_Activate(troots); if (success != TRUE) { wprintf(L"%s\n",CkTrustedRootsW_lastErrorText(troots)); CkJavaKeyStoreW_Dispose(jks); CkTrustedRootsW_Dispose(troots); return; } // 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 CkJavaKeyStoreW_Dispose(jks); CkTrustedRootsW_Dispose(troots); } | ||||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.