3DES encryption.
-
Hi, I wanted to use 3DES encryption in my C++/VC++ code for encypting an XML string. Could anyone please point me to some open source library which I could use directly instead of developing it all over again. Thanks in advace.
-
Hi, I wanted to use 3DES encryption in my C++/VC++ code for encypting an XML string. Could anyone please point me to some open source library which I could use directly instead of developing it all over again. Thanks in advace.
You don't need a open source library,
Windows
hasCryptography API
[^] providingtriple DES
algorithm. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Hi, I wanted to use 3DES encryption in my C++/VC++ code for encypting an XML string. Could anyone please point me to some open source library which I could use directly instead of developing it all over again. Thanks in advace.
I'd recommend Crypto++[^]. I find (once you're used to the way it works) that it's easier to use than Windows Cryptographic APIs. Jeffrey Walton's written quite a few very useful articles[^] on cryptography, using Crypto++ and (IIRC) the Windows Cryptographic API
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
-
You don't need a open source library,
Windows
hasCryptography API
[^] providingtriple DES
algorithm. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]How to specify 3DES while using EncryptMessage() API. Could you please share the code snippet if you have one.
-
How to specify 3DES while using EncryptMessage() API. Could you please share the code snippet if you have one.
See, for instance [^], the encryption algorithm is specified in the
CryptGenKey
call. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]