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.
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
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
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
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.