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
(PowerBuilder) AES XTS Mode where Tweak Value is Data Unit NumberDemonstrates the AES-XTS mode of operation where the tweak value is specified as a data unit number. Note: This example requires Chilkat v9.5.0.91 or greater.
integer li_rc integer li_Success string ls_Key string ls_TweakKey string ls_DataUnit oleobject loo_Bd oleobject loo_Crypt // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // IEEE 1619 test vector 10 ls_Key = "2718281828459045235360287471352662497757247093699959574966967627" ls_TweakKey = "3141592653589793238462643383279502884197169399375105820974944592" // The data unit number is 255 // We'll specify this numerically by calling XtsSetDataUnitNumber with 255, 0 (see below) ls_DataUnit = "00000000000000ff" loo_Bd = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_Bd.ConnectToNewObject("Chilkat.BinData") if li_rc < 0 then destroy loo_Bd MessageBox("Error","Connecting to COM object failed") return end if loo_Bd.AppendEncoded("000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f","hex") loo_Bd.AppendEncoded("202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f","hex") loo_Bd.AppendEncoded("404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f","hex") loo_Bd.AppendEncoded("606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f","hex") loo_Bd.AppendEncoded("808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9f","hex") loo_Bd.AppendEncoded("a0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebf","hex") loo_Bd.AppendEncoded("c0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedf","hex") loo_Bd.AppendEncoded("e0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff","hex") loo_Bd.AppendEncoded("000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f","hex") loo_Bd.AppendEncoded("202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f","hex") loo_Bd.AppendEncoded("404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f","hex") loo_Bd.AppendEncoded("606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f","hex") loo_Bd.AppendEncoded("808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9f","hex") loo_Bd.AppendEncoded("a0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbebf","hex") loo_Bd.AppendEncoded("c0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedf","hex") loo_Bd.AppendEncoded("e0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff","hex") Write-Debug "Size of plain-text: " + string(loo_Bd.NumBytes) // This is the expected ciphertext: // cipherText = "1c3b3a102f770386e4836c99e370cf9bea00803f5e482357a4ae12d414a3e63b" // + "5d31e276f8fe4a8d66b317f9ac683f44680a86ac35adfc3345befecb4bb188fd" // + "5776926c49a3095eb108fd1098baec70aaa66999a72a82f27d848b21d4a741b0" // + "c5cd4d5fff9dac89aeba122961d03a757123e9870f8acf1000020887891429ca" // + "2a3e7a7d7df7b10355165c8b9a6d0a7de8b062c4500dc4cd120c0f7418dae3d0" // + "b5781c34803fa75421c790dfe1de1834f280d7667b327f6c8cd7557e12ac3a0f" // + "93ec05c52e0493ef31a12d3d9260f79a289d6a379bc70c50841473d1a8cc81ec" // + "583e9645e07b8d9670655ba5bbcfecc6dc3966380ad8fecb17b6ba02469a020a" // + "84e18e8f84252070c13e9f1f289be54fbc481457778f616015e1327a02b140f1" // + "505eb309326d68378f8374595c849d84f4c333ec4423885143cb47bd71c5edae" // + "9be69a2ffeceb1bec9de244fbe15992b11b77c040f12bd8f6a975a44a0f90c29" // + "a9abc3d4d893927284c58754cce294529f8614dcd2aba991925fedc4ae74ffac" // + "6e333b93eb4aff0479da9a410e4450e0dd7ae4c6e2910900575da401fc07059f" // + "645e8b7e9bfdef33943054ff84011493c27b3429eaedb4ed5376441a77ed4385" // + "1ad77f16f541dfd269d50d6a5f14fb0aab1cbb4c1550be97f7ab4066193c4caa" // + "773dad38014bd2092fa755c824bb5e54c4f36ffda9fcea70b9c6e693e148c151"; loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") loo_Crypt.CryptAlgorithm = "aes" loo_Crypt.CipherMode = "xts" loo_Crypt.KeyLength = 256 loo_Crypt.SetEncodedKey(ls_Key,"hex") loo_Crypt.XtsSetEncodedTweakKey(ls_TweakKey,"hex") // Here we set the tweak value as a data unit number (a 64-bit integer passed in 2 32-bit values) loo_Crypt.XtsSetDataUnitNumber(255,0) // In-place encrypt the contents of bd. li_Success = loo_Crypt.EncryptBd(loo_Bd) Write-Debug "CT = " + loo_Bd.GetEncoded("hexlower") // Decrypt to revert back to the unencrypted content: li_Success = loo_Crypt.DecryptBd(loo_Bd) Write-Debug "PT = " + loo_Bd.GetEncoded("hexlower") destroy loo_Bd destroy loo_Crypt |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.