aboutsummaryrefslogtreecommitdiffstats
path: root/doc/crypto/BN_bn2bin.pod
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-27 01:50:42 +0000
committerUlf Möller <ulf@openssl.org>2000-01-27 01:50:42 +0000
commite93f9a3284c799bb851afaeddd56ed502ba189b6 (patch)
tree3252e4d6730be4eadb9db6b20470c81432a5050b /doc/crypto/BN_bn2bin.pod
parentbb075f883356589425b7e57f788c7498a83b0219 (diff)
downloadopenssl-e93f9a3284c799bb851afaeddd56ed502ba189b6.tar.gz
Run ispell.
Clean up bn_mont.c.
Diffstat (limited to 'doc/crypto/BN_bn2bin.pod')
-rw-r--r--doc/crypto/BN_bn2bin.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/BN_bn2bin.pod b/doc/crypto/BN_bn2bin.pod
index 1a6c237744..6bf5f34822 100644
--- a/doc/crypto/BN_bn2bin.pod
+++ b/doc/crypto/BN_bn2bin.pod
@@ -18,7 +18,7 @@ BN_print, BN_print_fp, BN_bn2mpi, BN_mpi2bn - Format conversions
int BN_dec2bn(BIGNUM **a, const char *str);
int BN_print(BIO *fp, const BIGNUM *a);
- int BN_print_fp(FILE *fp, BIGNUM *a);
+ int BN_print_fp(FILE *fp, const BIGNUM *a);
int BN_bn2mpi(const BIGNUM *a, unsigned char *to);
BIGNUM *BN_mpi2bn(unsigned char *s, int len, BIGNUM *ret);
@@ -59,7 +59,7 @@ must be large enough to hold the result. The size can be determined by
calling BN_bn2mpi(B<a>, NULL).
BN_mpi2bn() converts the B<len> bytes long representation at B<s> to
-a B<BIGNUM> and stores it ar B<ret>, or in a newly allocated B<BIGNUM>
+a B<BIGNUM> and stores it at B<ret>, or in a newly allocated B<BIGNUM>
if B<ret> is NULL.
=head1 RETURN VALUES