Chilkat v10.1.3 Release Notes

Previous Version: Chilkat v10.1.2 Release Notes This minor release was made shortly after v10.1.2, mainly to fix the Email FROM header bug introduced in v10.1.2. Socket: Added the GetAdaptersAddresses method to get the local LAN IP address and MAC address for each network adapter. Email: Fixed a problem relating to quoted-printable FROM names in the email MIME header. This was […]

Crypt2.SetEncodedKey – Help! I Passed a non-Hex String but Told Chilkat it was Hex

You made a mistake and set an AES encryption key in the wrong way like this: Chilkat.Crypt2 crypt = new Chilkat.Crypt2(); crypt.KeyLength = 256; crypt.CryptAlgorithm = “aes”; // This is the error. We passed base64 (or anything that is NOT a hexidecimal string) // And then asked Chilkat to decode it as hex. crypt.SetEncodedKey(“rZFNAfY7CirLtWxKiRU187k9mqcGCBZnV4QrmBvsboE”,”hex”); And then we proceeded to encrypt […]