aboutsummaryrefslogtreecommitdiffstats
path: root/doc/man3/OSSL_PARAM_BLD.pod
diff options
context:
space:
mode:
authorAhmed JELIJLI <ahmedjeljeli@gmail.com>2022-05-05 11:33:25 +0200
committerPauli <pauli@openssl.org>2022-05-09 10:51:51 +1000
commitbe92036b347e381fd606e100b6c91f1bab4b7718 (patch)
tree388732d06c03ff0fe264d931c3561ef1dc5413e2 /doc/man3/OSSL_PARAM_BLD.pod
parent4b4d0ded6df357f76f580b7218abb3fe55f64463 (diff)
downloadopenssl-be92036b347e381fd606e100b6c91f1bab4b7718.tar.gz
doc: Fix RSA public key parameters
CLA: trivial Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18253)
Diffstat (limited to 'doc/man3/OSSL_PARAM_BLD.pod')
-rw-r--r--doc/man3/OSSL_PARAM_BLD.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/OSSL_PARAM_BLD.pod b/doc/man3/OSSL_PARAM_BLD.pod
index a1c6c01c67..36182be047 100644
--- a/doc/man3/OSSL_PARAM_BLD.pod
+++ b/doc/man3/OSSL_PARAM_BLD.pod
@@ -183,7 +183,7 @@ public key.
if (nld == NULL
|| !OSSL_PARAM_BLD_push_BN(bld, "n", n)
- || !OSSL_PARAM_BLD_push_BN(bld, "d", d)
+ || !OSSL_PARAM_BLD_push_BN(bld, "e", e)
|| (params = OSSL_PARAM_BLD_to_param(bld)) == NULL)
goto err;
OSSL_PARAM_BLD_free(bld);