[openssl] master update
Richard Levitte
levitte at openssl.org
Wed Apr 29 08:50:47 UTC 2020
The branch master has been updated
via 5e427a435b3b1db0fb0626b26e031f71bde65f7a (commit)
from 90a37ce389182cfdbf347c3a85317524a2d0e39a (commit)
- Log -----------------------------------------------------------------
commit 5e427a435b3b1db0fb0626b26e031f71bde65f7a
Author: opensignature <antiac at gmail.com>
Date: Mon Apr 27 11:47:44 2020 +0200
Update EVP_PKEY_fromdata.pod
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11660)
-----------------------------------------------------------------------
Summary of changes:
doc/man3/EVP_PKEY_fromdata.pod | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/doc/man3/EVP_PKEY_fromdata.pod b/doc/man3/EVP_PKEY_fromdata.pod
index a1c1ed3772..71ba642180 100644
--- a/doc/man3/EVP_PKEY_fromdata.pod
+++ b/doc/man3/EVP_PKEY_fromdata.pod
@@ -94,10 +94,10 @@ TODO Write a set of cookbook documents and link to them.
* and secure application is expected to use BIGNUMs, and to build
* this array dynamically.
*/
- const unsigned long rsa_n = 0xbc747fc5;
- const unsigned long rsa_e = 0x10001;
- const unsigned long rsa_d = 0x7b133399;
- const OSSL_PARAM[] = {
+ unsigned long rsa_n = 0xbc747fc5;
+ unsigned long rsa_e = 0x10001;
+ unsigned long rsa_d = 0x7b133399;
+ OSSL_PARAM params[] = {
OSSL_PARAM_ulong("n", &rsa_n),
OSSL_PARAM_ulong("e", &rsa_e),
OSSL_PARAM_ulong("d", &rsa_d),
More information about the openssl-commits
mailing list