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
(MFC) Add Private Key to Java KeystoreAdds a private key to an existing Java keystore.
#include <CkJavaKeyStore.h> #include <CkCert.h> #include <CkXmlCertVault.h> #include <CkPrivateKey.h> #include <CkPfx.h> void ChilkatSample(void) { CkString strOut; // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkJavaKeyStore jks; const char *jksPassword = "myJksPassword"; const char *jksPath = "/someDir/keyStore.jks"; // Load the Java keystore from a file. bool success = jks.LoadFile(jksPassword,jksPath); if (success != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // A JKS private key entry consists of both the private key, // it's associated certificate (which contains the matching public key // within the X.509 of the certificate), and the certificates in the // chain of authentication to the root. // // Therefore, to add a private key entry to a JKS requires // a Chilkat certificate object that has a private key and which also // has the certificate chain (up to the root) available. // There are many ways to get a Chilkat certificate object // that contains (within it) the private key and the certificate chain // This example will show two possibilities: // (1) Where the cert and issuing root are provided in PEM format in .crt files, // and the private key is also provided in unencrypted PEM format (.key file). // (2) Where the cert, private key, and issuing root are provided in a single PFX. // First for the .crt / .key files: CkCert cert; // Chilkat will automatically determine the format of the cert file and load it correctly. success = cert.LoadFromFile("/mycerts/alice.crt"); if (success != true) { strOut.append(cert.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Certificates required for building the chain of authentication can be // added to an XML certificate vault object, and then provided as // a source for obtaining certs when building the chain. CkXmlCertVault certVault; success = certVault.AddCertFile("/mycerts/ca.crt"); if (success != true) { strOut.append(certVault.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } success = cert.UseCertVault(certVault); if (success != true) { strOut.append(cert.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Now provide the associated private key to the certificate object. // The Chilkat private key class provides methods for loading from many formats (both // encrypted and unencrypted). CkPrivateKey privKey; success = privKey.LoadPemFile("/mycerts/alice.key"); if (success != true) { strOut.append(privKey.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Provide the certificate object with the private key: success = cert.SetPrivateKey(privKey); if (success != true) { strOut.append(cert.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Our certificate object now contains all that we need to add it as a private key entry // to the Java keystore: const char *alias = "alice"; success = jks.AddPrivateKey(cert,alias,jksPassword); if (success != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Write the updated JKS, which contains the new private key entry w/ certificate chain. success = jks.ToFile(jksPassword,jksPath); if (success != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } strOut.append("Added new private key entry (from .crt and .key files) to the JKS!"); strOut.append("\r\n"); // Now let's add a new private key entry from a PFX that contains a single // private key with associated cert and cert chain. CkPfx pfx; success = pfx.LoadPfxFile("/myPfxFiles/my.pfx","pfxPassword"); if (success != true) { strOut.append(pfx.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // This is easy -- simply add the PFX to the JKS alias = "bob"; success = jks.AddPfx(pfx,alias,jksPassword); if (success != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Write the updated JKS, which contains the new private key entry w/ certificate chain // that came from the PFX. success = jks.ToFile(jksPassword,jksPath); if (success != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } strOut.append("Added new private key entry (from PFX) to the JKS!"); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.