Re: [openssl-users] RSA Digital Signing

2019-01-28 Thread Matt Caswell
On 27/01/2019 17:43, prithiraj das wrote: > Hi All, > > Using OpenSSL, I need to implement digital signing. My approach as of now is: > 1)  At the sender side, generate the hash of the data using sha256. > 2)  Encrypt the hash of the data using RSA Private key for the purpose of > signing. Send

Re: [openssl-users] RSA Digital Signing

2019-01-27 Thread Viktor Dukhovni
> On Jan 27, 2019, at 12:43 PM, prithiraj das wrote: > > Using OpenSSL, I need to implement digital signing. My approach as of now is: > 1) At the sender side, generate the hash of the data using sha256. > 2) Encrypt the hash of the data using RSA Private key for the purpose of > signing.

[openssl-users] RSA Digital Signing

2019-01-27 Thread prithiraj das
Hi All, Using OpenSSL, I need to implement digital signing. My approach as of now is: 1) At the sender side, generate the hash of the data using sha256. 2) Encrypt the hash of the data using RSA Private key for the purpose of signing. Send this encrypted hash and the data from Step 1 to the