Visual FoxPro
Visual FoxPro
Load Certs from Java KeyStore into Trusted CA Roots
See more Java KeyStore (JKS) Examples
Demonstrates 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.Chilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loJks
LOCAL lcPassword
LOCAL loTroots
LOCAL i
LOCAL lnNumCerts
LOCAL loCacert
lnSuccess = 0
* This requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loJks = CreateObject('Chilkat.JavaKeyStore')
loJks.VerboseLogging = 1
lcPassword = "myPassword"
lnSuccess = loJks.LoadFile(lcPassword,"qa_data/jks/entrust_caCerts.jks")
IF (lnSuccess <> 1) THEN
? loJks.LastErrorText
RELEASE loJks
CANCEL
ENDIF
loTroots = CreateObject('Chilkat.TrustedRoots')
loTroots.VerboseLogging = 1
lnSuccess = loTroots.AddJavaKeyStore(loJks)
IF (lnSuccess <> 1) THEN
? loTroots.LastErrorText
RELEASE loJks
RELEASE loTroots
CANCEL
ENDIF
i = 0
lnNumCerts = loTroots.NumCerts
DO WHILE (i < lnNumCerts)
loCacert = loTroots.GetCert(i)
? STR(i) + ": " + loCacert.SubjectDN
RELEASE loCacert
i = i + 1
ENDDO
* Activate this specific set of trusted roots.
lnSuccess = loTroots.Activate()
IF (lnSuccess <> 1) THEN
? loTroots.LastErrorText
RELEASE loJks
RELEASE loTroots
CANCEL
ENDIF
* 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
RELEASE loJks
RELEASE loTroots