Hi All, I was using DH_generate_key yo generate a shared key and it works well. I had a question regarding the implementation of DH_generate_key. In my project, I cannot link to any of the default C libraries etc., so when I do DH_generate_key in my project it doesnt work, does it use some I/O (File read etc. or some other function from the standard C library internally). If so, is there any function which can give me the DH public private pair if I pass it the dh structure with the DH parameters populated, I was hoping that if we just pass a pointer to the DH structure with the parameters, it would not be linking to any other standard C libraries to get the key pair.
Any suggestions? Thanks, Sid