Re: RSA and DES encryption and decryption with C++ on Windows

2022-04-11 Thread Dr Paul Dale
aster/demos/encrypt Matthias *From:*openssl-users *On Behalf Of *John Alway *Sent:* Monday, April 11, 2022 7:06 PM *Cc:* openssl-users@openssl.org *Subject:* Re: RSA and DES encryption and decryption with C++ on Windows Pauli, Thanks for the link, but apparently that code requires havi

RE: RSA and DES encryption and decryption with C++ on Windows

2022-04-11 Thread Dr. Matthias St. Pierre
@openssl.org Subject: Re: RSA and DES encryption and decryption with C++ on Windows Pauli, Thanks for the link, but apparently that code requires having an account to view it. However, I've passed the information from this thread onto the guy I'm working with and he's going to ree

Re: RSA and DES encryption and decryption with C++ on Windows

2022-04-11 Thread John Alway
Pauli, Thanks for the link, but apparently that code requires having an account to view it. However, I've passed the information from this thread onto the guy I'm working with and he's going to reevaluate what he wants to do. Regards, ...John

Re: RSA and DES encryption and decryption with C++ on Windows

2022-04-10 Thread Dr Paul Dale
Have a look in the demos/encrypt folder: https://github.openssl.org/openssl/openssl/tree/master/demos/encrypt There has been an amount of effort put into updating these for 3.0 & later.  There is more to do. Pauli On 10/4/22 23:50, Kenneth Goldman wrote: Anyway, I'm trying to encrypt/decr

Re: RSA and DES encryption and decryption with C++ on Windows

2022-04-10 Thread John Alway
Thank you and Kenneth for your replies. I was given this task by someone with all of these specifics, including the site to download the library. Most of the terminology about encryption I'm not familiar with, but I'm learning. I've passed both of your posts and the wisdom in them on to him to

RE: RSA and DES encryption and decryption with C++ on Windows

2022-04-10 Thread Michael Wojcik
> From: openssl-users On Behalf Of John > Alway > Sent: Saturday, 9 April, 2022 19:45 > From this site https://slproweb.com/products/Win32OpenSSL.html >  I downloaded " Win32 OpenSSL v3.0.2" MSI  Well, I suppose that's one option. Personally I would not use a build from some random website; I'

RE: RSA and DES encryption and decryption with C++ on Windows

2022-04-10 Thread Kenneth Goldman
Anyway, I'm trying to encrypt/decrypt using RSA and DES schemes. I've tried some of the older code examples I could find, but some of the functions weren't recognized by my header files. [kgold] You cannot encrypt long streams with RSA. DES is deprecated. Can anyone help me with this? I want