0

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.

Ibrahim.I
  • 229
  • 1
  • 4
  • 18
  • DES is useless if your adversary can spare a few hours of CPU time to brute force the key, so it is inadvisable to use it in new software. – ntoskrnl Jun 03 '13 at 14:55

1 Answers1

1

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.

Vlad Krasnov
  • 1,027
  • 7
  • 12