aboutsummaryrefslogtreecommitdiffstats
path: root/doc/crypto/BN_bn2bin.pod
diff options
context:
space:
mode:
authorhuangqinjin <huangqinjin@gmail.com>2016-06-20 00:17:51 +0800
committerRich Salz <rsalz@openssl.org>2016-06-20 09:53:21 -0400
commit14f4656058e8ddbcf1d510bc73670250ed0e10c0 (patch)
tree7fa3dc4ac1554fbc35f7e8aa15645f6216f034fd /doc/crypto/BN_bn2bin.pod
parentb88e95f3a0bbe4656697c6af4023c5848f93081a (diff)
downloadopenssl-14f4656058e8ddbcf1d510bc73670250ed0e10c0.tar.gz
doc and comment fixes
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1233)
Diffstat (limited to 'doc/crypto/BN_bn2bin.pod')
-rw-r--r--doc/crypto/BN_bn2bin.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/BN_bn2bin.pod b/doc/crypto/BN_bn2bin.pod
index 8098fd9df5..b0a8b50d5e 100644
--- a/doc/crypto/BN_bn2bin.pod
+++ b/doc/crypto/BN_bn2bin.pod
@@ -51,7 +51,7 @@ hexadecimal and decimal encoding of B<a> respectively. For negative
numbers, the string is prefaced with a leading '-'. The string must be
freed later using OPENSSL_free().
-BN_hex2bn()takes as many characters as possible from the string B<str>,
+BN_hex2bn() takes as many characters as possible from the string B<str>,
including the leading character '-' which means negative, to form a valid
hexadecimal number representation and converts them to a B<BIGNUM> and
stores it in **B<bn>. If *B<bn> is NULL, a new B<BIGNUM> is created. If