diff options
author | daurnimator <quae@daurnimator.com> | 2017-10-13 16:06:25 -0700 |
---|---|---|
committer | Ben Kaduk <kaduk@mit.edu> | 2017-10-16 09:04:13 -0500 |
commit | aeb3e4abb6abab64342df44b2a7dc407f6508a11 (patch) | |
tree | 7d4bc697411b3a8fba77cf02c430d358366713b4 /doc/man3 | |
parent | 0bd42fde954a823cf6fffb6e13bd3dd4900a01e2 (diff) | |
download | openssl-new-aeb3e4abb6abab64342df44b2a7dc407f6508a11.tar.gz |
Fix incorrect function name in BN_bn2bin manpage
CLA: trivial
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Ben Kaduk <kaduk@mit.edu>
(Merged from https://github.com/openssl/openssl/pull/4529)
Diffstat (limited to 'doc/man3')
-rw-r--r-- | doc/man3/BN_bn2bin.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/BN_bn2bin.pod b/doc/man3/BN_bn2bin.pod index ac46948477..dcff25195b 100644 --- a/doc/man3/BN_bn2bin.pod +++ b/doc/man3/BN_bn2bin.pod @@ -44,7 +44,7 @@ BN_bin2bn() converts the positive integer in big-endian form of length B<len> at B<s> into a B<BIGNUM> and places it in B<ret>. If B<ret> is NULL, a new B<BIGNUM> is created. -BN_bn2lebinpad() and BN_bin2lbn() are identical to BN_bn2binpad() and +BN_bn2lebinpad() and BN_lebin2bn() are identical to BN_bn2binpad() and BN_bin2bn() except the buffer is in little-endian format. BN_bn2hex() and BN_bn2dec() return printable strings containing the |