Ibrahim.I
Ibrahim.I

Reputation: 329

OpenSSL.NET DES Functions

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

Answers (1)

Vlad Krasnov
Vlad Krasnov

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

Related Questions