User talk:L.Habib

From OpenSSLWiki
Revision as of 19:31, 12 February 2021 by L.Habib (talk | contribs) (Created page with "in ['''https://wiki.openssl.org/index.php/Diffie_Hellman'''] under ['''Working with Parameters and Generating Keys'''] in the code section i think : if(1 != EVP_PKEY_keygen(kc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

in [https://wiki.openssl.org/index.php/Diffie_Hellman] under [Working with Parameters and Generating Keys] in the code section i think : if(1 != EVP_PKEY_keygen(kctx, &dhkey)) handleErrors(); should be rewrote as : if(1 != EVP_PKEY_keygen(kctx, &params)) handleErrors();

am i wrong ?