Reputation: 329
I wan't to deal with 3DES algorithm using OpanSSL C# wrapper. can anyone tell me where to find 3DES functions in OpenSSL.NET? and how to encrypt and decrypt using shared secret key between the server and the client.
Upvotes: 0
Views: 267
Reputation: 1027
Use AES instead, it is more secure and faster on new CPUs with HW AES acceleration. You can find the OpenSSL API at openssl.org, the openssl.net is a wrapper to the C API.
Upvotes: 1