![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
112-bit 3DES EncryptionDemonstrates how to do 112-bit 3DES encryption.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% set crypt = Server.CreateObject("Chilkat_9_5_0.Crypt2") success = crypt.UnlockComponent("Anything for 30-day trial") If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode("Crypt component unlock failed") & "</pre>" End If ' Specify 3DES for the encryption algorithm: crypt.CryptAlgorithm = "3des" ' CipherMode may be "ecb" or "cbc" crypt.CipherMode = "ecb" ' Set the key length crypt.KeyLength = 112 ' Choose a padding scheme... crypt.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.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. 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) keyHex = "11165395389c904862912aba16d315b8" crypt.SetEncodedKey keyHex,"hex" ' Encrypt a string... encStr = crypt.EncryptStringENC("999999987") ' The result should be: 8CDBB138C11EDC3A77F04E488B46385C Response.Write "<pre>" & Server.HTMLEncode(encStr) & "</pre>" ' Now decrypt: decStr = crypt.DecryptStringENC(encStr) Response.Write "<pre>" & Server.HTMLEncode(decStr) & "</pre>" %> </body> </html> |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.