Chilkat • HOME • Android™ • Classic ASP • C • C++ • C# • Mono C# • .NET Core C# • C# UWP/WinRT • DataFlex • Delphi ActiveX • Delphi DLL • Visual FoxPro • Java • Lianja • MFC • Objective-C • Perl • PHP ActiveX • PHP Extension • PowerBuilder • PowerShell • PureBasic • CkPython • Chilkat2-Python • Ruby • SQL Server • Swift 2 • Swift 3,4,5... • Tcl • Unicode C • Unicode C++ • Visual Basic 6.0 • VB.NET • VB.NET UWP/WinRT • VBScript • Xojo Plugin • Node.js • Excel • Go
(VB.NET UWP/WinRT) AES Encryption ECB Mode with PKCS7 PaddingDuplicates the following C# code: public static byte[] DecryptBySymmetricKey(string encryptedText, byte[] key) { string keyAsBase64 = Convert.ToBase64String(key); byte[] dataToDecrypt = Convert.FromBase64String(encryptedText); var keyBytes = key; AesManaged tdes = new AesManaged(); tdes.KeySize = 256; tdes.BlockSize = 128; tdes.Key = keyBytes; tdes.Mode = CipherMode.ECB; tdes.Padding = PaddingMode.PKCS7; ICryptoTransform decrypt__1 = tdes.CreateDecryptor(); byte[] deCipher = decrypt__1.TransformFinalBlock(dataToDecrypt, 0, dataToDecrypt.Length); tdes.Clear(); string EK_result = Convert.ToBase64String(deCipher); return EK_result; }
' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim crypt As New Chilkat.Crypt2 ' In the C# code above that is to be duplicated here, use the base64 encoded key. Dim keyAsBase64 As String = "..." Dim encryptedBytesAsBase64 As String = "...." crypt.KeyLength = 256 crypt.CryptAlgorithm = "AES" crypt.CipherMode = "ecb" crypt.PaddingScheme = 0 crypt.SetEncodedKey(keyAsBase64,"base64") crypt.EncodingMode = "base64" ' Pass the base64 representation of the encrypted data. ' (The EncodingMode indicates you are passing base64.) Dim EK_result As String = crypt.DecryptStringENC(encryptedBytesAsBase64) Debug.WriteLine(EK_result) |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.