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
(C) RSA Signature/Verify with .key and .cerSee more RSA ExamplesDemonstrates how to use a .key file (private key) and digital certificate (.cer, public key) to create and verify an RSA signature.
#include <C_CkPrivateKey.h> #include <C_CkRsa.h> #include <C_CkCert.h> #include <C_CkPublicKey.h> void ChilkatSample(void) { HCkPrivateKey privKey; BOOL success; const char *privKeyXml; HCkRsa rsa; const char *strData; const char *hexSig; HCkCert cert; HCkPublicKey pubKey; HCkRsa rsa2; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. privKey = CkPrivateKey_Create(); // Load the private key from an RSA .key file: success = CkPrivateKey_LoadPemFile(privKey,"privateKey.key"); if (success != TRUE) { printf("%s\n",CkPrivateKey_lastErrorText(privKey)); CkPrivateKey_Dispose(privKey); return; } // Get the private key in XML format: privKeyXml = CkPrivateKey_getXml(privKey); rsa = CkRsa_Create(); // Import the private key into the RSA component: success = CkRsa_ImportPrivateKey(rsa,privKeyXml); if (success != TRUE) { printf("%s\n",CkRsa_lastErrorText(rsa)); CkPrivateKey_Dispose(privKey); CkRsa_Dispose(rsa); return; } // Create the signature as a hex string: CkRsa_putEncodingMode(rsa,"hex"); strData = "This is the string to be signed."; // Sign the string using the sha-1 hash algorithm. // Other valid choices are "md2", "sha256", "sha384", // "sha512", and "md5". hexSig = CkRsa_signStringENC(rsa,strData,"sha-1"); printf("%s\n",hexSig); // Load a digital certificate from a .cer file: cert = CkCert_Create(); success = CkCert_LoadFromFile(cert,"myCert.cer"); if (success != TRUE) { printf("%s\n",CkCert_lastErrorText(cert)); CkPrivateKey_Dispose(privKey); CkRsa_Dispose(rsa); CkCert_Dispose(cert); return; } pubKey = CkCert_ExportPublicKey(cert); // Now verify using a separate instance of the RSA object: rsa2 = CkRsa_Create(); // Import the public key into the RSA object: success = CkRsa_ImportPublicKey(rsa2,CkPublicKey_getXml(pubKey)); if (success != TRUE) { printf("%s\n",CkRsa_lastErrorText(rsa2)); CkPrivateKey_Dispose(privKey); CkRsa_Dispose(rsa); CkCert_Dispose(cert); CkRsa_Dispose(rsa2); return; } CkPublicKey_Dispose(pubKey); // The signature is a hex string, so make sure the EncodingMode is correct: CkRsa_putEncodingMode(rsa2,"hex"); // Verify the signature: success = CkRsa_VerifyStringENC(rsa2,strData,"sha-1",hexSig); if (success != TRUE) { printf("%s\n",CkRsa_lastErrorText(rsa2)); CkPrivateKey_Dispose(privKey); CkRsa_Dispose(rsa); CkCert_Dispose(cert); CkRsa_Dispose(rsa2); return; } printf("Success.\n"); CkPrivateKey_Dispose(privKey); CkRsa_Dispose(rsa); CkCert_Dispose(cert); CkRsa_Dispose(rsa2); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.