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

2022-04-11 Thread Dr Paul Dale
Thanks Matthias, that's exactly what I did.  Too many repositories :) Pauli On 12/4/22 05:24, Dr. Matthias St. Pierre wrote: Pauli accidentally posted a link to our internal repository. You can jost replace githuib.openssl.org by github.com:

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

2022-04-11 Thread Dr. Matthias St. Pierre
Pauli accidentally posted a link to our internal repository. You can jost replace githuib.openssl.org by github.com: https://github.com/openssl/openssl/tree/master/demos/encrypt Matthias From: openssl-users On Behalf Of John Alway Sent: Monday, April 11, 2022 7:06 PM Cc:

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

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;

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

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

2022-04-09 Thread John Alway
Hello, I'm a C++ programmer. I recently downloaded and installed the OpenSSL library to my Windows 10 machine. >From this site https://slproweb.com/products/Win32OpenSSL.html I downloaded " Win32 OpenSSL v3.0.2" MSI I'm using Visual Studio 2019. Anyway, the long and short of it is that I