Make EVP_PKEY_CTX_[get|set]_group_name work for DH too
[openssl.git] / doc / man7 / EVP_PKEY-DH.pod
index d2a49b7bfaebc48da81f7be8800f3400d2a9661e..f640753bfeccfb1c5c615eb8c0ea5e3a6139b3f7 100644 (file)
@@ -29,7 +29,7 @@ implementation supports the following:
 
 =over 4
 
-=item "group" (B<OSSL_PKEY_PARAM_DH_GROUP>) <UTF8 string>
+=item "group" (B<OSSL_PKEY_PARAM_GROUP_NAME>) <UTF8 string>
 
 Set or gets a string that associates a B<DH> named safe prime group with known
 values for I<p>, I<q> and I<g>.
@@ -147,7 +147,7 @@ Legacy B<DH> domain parameters can be generated by calling:
 
     pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL);
     EVP_PKEY_paramgen_init(pctx);
-    
+
     params[0] = OSSL_PARAM_construct_uint("pbits", &pbits);
     params[1] = OSSL_PARAM_construct_uint("qbits", &qbits);
     params[2] = OSSL_PARAM_construct_int("gindex", &gindex);