Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
112-bit 3DES EncryptionDemonstrates how to do 112-bit 3DES encryption. Downloads: MS Windows Visual C/C++ Libraries Linux/CentOS C/C++ Libraries MAC OS X C/C++ Libraries Solaris C/C++ Libraries C++ Builder Libraries FreeBSD C++ Libraries HP-UX C++ Libraries BlackBerry QNX C++ Libraries #include <CkCrypt2.h> void ChilkatSample(void) { CkCrypt2 crypt; bool success; success = crypt.UnlockComponent("Anything for 30-day trial"); if (success != true) { printf("Crypt component unlock failed\n"); return; } // Specify 3DES for the encryption algorithm: crypt.put_CryptAlgorithm("3des"); // CipherMode may be "ecb" or "cbc" crypt.put_CipherMode("ecb"); // Set the key length crypt.put_KeyLength(112); // Choose a padding scheme... crypt.put_PaddingScheme(0); // EncodingMode specifies the encoding of the output for // encryption, and the input for decryption. // It may be "hex", "url", "base64", or "quoted-printable". crypt.put_EncodingMode("hex"); // An initialization vector is required if using CBC or CFB modes. // ECB mode does not use an IV. // The length of the IV is equal to the algorithm's block size. // It is NOT equal to the length of the key. const char * ivHex; ivHex = "0001020304050607"; crypt.SetEncodedIV(ivHex,"hex"); // The secret key must equal the size of the key. // Remember, DES (i.e. 3DES) uses a parity bit in the key, // so 112-bit 3DES requires 128 bits of key material // (i.e. 16 bytes) const char * keyHex; keyHex = "11165395389c904862912aba16d315b8"; crypt.SetEncodedKey(keyHex,"hex"); // Encrypt a string... const char * encStr; encStr = crypt.encryptStringENC("999999987"); // The result should be: 8CDBB138C11EDC3A77F04E488B46385C printf("%s\n",encStr); // Now decrypt: const char * decStr; decStr = crypt.decryptStringENC(encStr); printf("%s\n",decStr); } |
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.