I want to know how to generate RSA private key using openssl liberary in my c source file? I know how to generate it using terminal command. Actually my server.c file will generate a private key and send to client.c Please help me with some source code if possible, otherwise any help will be appreciated. I'm working on Linux machine.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
You would use |
|||
|
|
|
kExp=3 can be a security hole, please use 65537 instead. The problem is called "Small RSA Exponent" ,see e.g. http://en.wikipedia.org/wiki/Coppersmith%27s_Attack and http://www.usna.edu/Users/math/wdj/book/node45.html Also please use more than 1024 bits. |
|||
|