Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Java) RSA Encrypt Randomly Generated AES KeyDemonstrates how to RSA encrypt a randomly generated AES key.
import com.chilkatsoft.*; public class ChilkatExample { static { try { System.loadLibrary("chilkat"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load.\n" + e); System.exit(1); } } public static void main(String argv[]) { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // First generate a 256-bit AES key (32 bytes). CkPrng prng = new CkPrng(); CkBinData bdAesKey = new CkBinData(); boolean success = prng.GenRandomBd(32,bdAesKey); // Use a public key from a certificate for RSA encryption. CkCert cert = new CkCert(); success = cert.LoadFromFile("qa_data/pem/mf_public_rsa.pem"); if (success == false) { System.out.println(cert.lastErrorText()); return; } CkPublicKey pubKey = cert.ExportPublicKey(); if (cert.get_LastMethodSuccess() != true) { System.out.println(cert.lastErrorText()); return; } CkRsa rsa = new CkRsa(); success = rsa.ImportPublicKeyObj(pubKey); if (success == false) { System.out.println(rsa.lastErrorText()); return; } // RSA encrypt our 32-byte AES key. // The contents of bdAesKey are replaced with result of the RSA encryption. success = rsa.EncryptBd(bdAesKey,false); if (success == false) { System.out.println(rsa.lastErrorText()); return; } // Return the result as a base64 string String encryptedAesKey = bdAesKey.getEncoded("base64"); System.out.println("encrypted AES key = " + encryptedAesKey); } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.