Triple DES algorithm in C?

Does anyone have a code snippet for Triple DES algorithm in C?

thank

+5
source share
4 answers

Here's a simple implementation in C and C ++. Perhaps easier to use than libtomcrypt.

http://www.codeguru.com/cpp/misc/misc/cryptoapi/article.php/c8195

+1
source

OpenSSL is written in C and provides a 3DES algorithm. It may not be as simple as some other suggestions, but it may be worth checking out.

+4
source

Crypto ++, , DES.

+2

libtomcrypt - lib, C, 3DES.

+1

All Articles