Difference between revisions of "User talk:L.Habib"

From OpenSSLWiki
Jump to navigationJump to search
(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...")
 
Line 1: Line 1:
in ['''https://wiki.openssl.org/index.php/Diffie_Hellman''']
+
in ['''https://wiki.openssl.org/index.php/Diffie_Hellman''']<br>
under ['''Working with Parameters and Generating Keys''']
+
under ['''Working with Parameters and Generating Keys''']<br>
in the code section
+
in the code section<br>
i think :
+
i think :<br>
if(1 != EVP_PKEY_keygen(kctx, &dhkey)) handleErrors();
+
'''if(1 != EVP_PKEY_keygen(kctx, &[[dhkey]])) handleErrors();'''<br>
should be rewrote as :
+
should be rewrote as :<br>
if(1 != EVP_PKEY_keygen(kctx, &params)) handleErrors();
+
'''if(1 != EVP_PKEY_keygen(kctx, &[[params]])) handleErrors();'''<br>
  
am i wrong ?
+
am i wrong ?<br>

Revision as of 19:32, 12 February 2021

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 ?