DESCryptoServiceProvider encryption and OpenSSL decrypt

2010-11-09 Thread wizard2010
Hello everyone. I'm using .NET to encrypt a file using DES. I'm using this: DESCryptoServiceProvider, CryptoTransform and CryptoStream Anyone knows how to use OpenSSL to decrypt the file? Thanks in advance. Best Regards.

Re: openssl decrypt

2009-01-27 Thread Victor Duchovni
On Tue, Jan 27, 2009 at 06:18:08PM -0500, Victor Duchovni wrote: > On Wed, Jan 28, 2009 at 12:07:25AM +0200, faust cep wrote: > > > I'm new to using openssl and I have a question on dcecrypting files > > from command line. Let's suppose that we encrypt file a.txt with key: > > mykey and save the

Re: openssl decrypt

2009-01-27 Thread Victor Duchovni
On Wed, Jan 28, 2009 at 12:07:25AM +0200, faust cep wrote: > I'm new to using openssl and I have a question on dcecrypting files > from command line. Let's suppose that we encrypt file a.txt with key: > mykey and save the encrypted in a.enc What I want is if users decrypt > it with a wrong key no

openssl decrypt

2009-01-27 Thread faust cep
Hello, I'm new to using openssl and I have a question on dcecrypting files from command line. Let's suppose that we encrypt file a.txt with key: mykey and save the encrypted in a.enc What I want is if users decrypt it with a wrong key not to be notified that their password is wrong but instea

Use .NET RSACryptoServiceProvider for encryption and let OpenSSL decrypt

2008-09-05 Thread PMicke
I want to write a .NET client that sends an encrypted message to a server written in C with OpenSSL crypto library, and decrypt the message there. I use RSA with PKCS1 padding. I have managed to get that to work for C clients using crypto library, Java clients using standard 1.5 library classes.