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
(Unicode C) RSA Decrypt BinaryWhen something is RSA encrypted, the output is always equal in size to the RSA key. For example, if "Hello World" is encrypted with a 1024-bit RSA key, the output is 128 bytes (because 1024 bits / 8 bits per byte = 128 bytes). You can see that the size of the RSA key imposes a limit on how many bytes can be encrypted. Thus RSA encryption is for small amounts of data. A typical use for RSA encryption is to encrypt a bulk (symmetric) encryption key. In this example, we have a binary file containing the result of RSA encryption. The size of the file tells us the RSA key size. For example, if the file is exactly 256 bytes, we know that the RSA key required to decrypt must be a 2048-bit key.
#include <C_CkRsaW.h> #include <C_CkPrivateKeyW.h> #include <C_CkBinDataW.h> void ChilkatSample(void) { HCkRsaW rsa; HCkPrivateKeyW privKey; BOOL success; HCkBinDataW bdEncrypted; const wchar_t *passphrase; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. rsa = CkRsaW_Create(); privKey = CkPrivateKeyW_Create(); success = CkPrivateKeyW_LoadPemFile(privKey,L"myPrivateKey.pem"); if (success != TRUE) { wprintf(L"%s\n",CkPrivateKeyW_lastErrorText(privKey)); CkRsaW_Dispose(rsa); CkPrivateKeyW_Dispose(privKey); return; } success = CkRsaW_ImportPrivateKeyObj(rsa,privKey); if (success != TRUE) { wprintf(L"%s\n",CkRsaW_lastErrorText(rsa)); CkRsaW_Dispose(rsa); CkPrivateKeyW_Dispose(privKey); return; } // Load the encrypted bytes. // This will typically be a file that is 128, 256, etc. bytes in length. // For example, maybe it is a file containing an encrypted passphrase... bdEncrypted = CkBinDataW_Create(); success = CkBinDataW_LoadFile(bdEncrypted,L"qa_data/passphrase.enc"); if (success != TRUE) { wprintf(L"Failed to load file.\n"); CkRsaW_Dispose(rsa); CkPrivateKeyW_Dispose(privKey); CkBinDataW_Dispose(bdEncrypted); return; } // In this case, we know that it was a string that was encrypted, // so decryption should result in a string. // To make things easy, we'll pass the RSA encrypted data as a Base64 string // to the decryptor. CkRsaW_putEncodingMode(rsa,L"base64"); passphrase = CkRsaW_decryptStringENC(rsa,CkBinDataW_getEncoded(bdEncrypted,L"base64"),TRUE); if (CkRsaW_getLastMethodSuccess(rsa) != TRUE) { wprintf(L"%s\n",CkRsaW_lastErrorText(rsa)); CkRsaW_Dispose(rsa); CkPrivateKeyW_Dispose(privKey); CkBinDataW_Dispose(bdEncrypted); return; } wprintf(L"Decrypted passphrase: %s\n",passphrase); CkRsaW_Dispose(rsa); CkPrivateKeyW_Dispose(privKey); CkBinDataW_Dispose(bdEncrypted); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.