summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BN_bn2bin.pod
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-24 01:20:39 +0000
committerUlf Möller <ulf@openssl.org>2000-01-24 01:20:39 +0000
commit223fc8654a790c204536cd7c61520154418915b8 (patch)
tree605e268fc3804486e4d6ef24e7b0af1ba70f0492 /doc/crypto/BN_bn2bin.pod
parent0e930f25d2997a37e2bf9aeba3c2ad9d2867a759 (diff)
RSA_print etc
Diffstat (limited to 'doc/crypto/BN_bn2bin.pod')
-rw-r--r--doc/crypto/BN_bn2bin.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/crypto/BN_bn2bin.pod b/doc/crypto/BN_bn2bin.pod
index 5d26765dd9..c8c75db011 100644
--- a/doc/crypto/BN_bn2bin.pod
+++ b/doc/crypto/BN_bn2bin.pod
@@ -3,7 +3,7 @@
=head1 NAME
BN_bn2bin, BN_bin2bn, BN_bn2hex, BN_bn2dec, BN_hex2bn, BN_dec2bn,
-BN_print_fp, BN_print, BN_bn2mpi, BN_mpi2bn - Format conversions
+BN_print, BN_print_fp, BN_bn2mpi, BN_mpi2bn - Format conversions
=head1 SYNOPSIS
@@ -17,8 +17,8 @@ BN_print_fp, BN_print, BN_bn2mpi, BN_mpi2bn - Format conversions
int BN_hex2bn(BIGNUM **a, const char *str);
int BN_dec2bn(BIGNUM **a, const char *str);
- int BN_print_fp(FILE *fp, BIGNUM *a);
int BN_print(BIO *fp, const BIGNUM *a);
+ int BN_print_fp(FILE *fp, BIGNUM *a);
int BN_bn2mpi(const BIGNUM *a, unsigned char *to);
BIGNUM *BN_mpi2bn(unsigned char *s, int len, BIGNUM *ret);
@@ -44,8 +44,8 @@ B<BIGNUM> is created. If B<bn> is NULL, it only computes the number's
length in hexadecimal digits. If the string starts with '-', the
number is negative. BN_dec2bn() is the same using the decimal system.
-BN_print_fp() and BN_print() write the hexadecimal encoding of B<a>,
-with a leading '-' for negative numbers, to the B<FILE> or B<BIO>
+BN_print() and BN_print_fp() write the hexadecimal encoding of B<a>,
+with a leading '-' for negative numbers, to the B<BIO> or B<FILE>
B<fp>.
BN_bn2mpi() and BN_mpi2bn() convert B<BIGNUM>s from and to a format