diff options
author | Ulf Möller <ulf@openssl.org> | 2000-01-27 02:50:42 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-01-27 02:50:42 +0100 |
commit | e93f9a3284c799bb851afaeddd56ed502ba189b6 (patch) | |
tree | 3252e4d6730be4eadb9db6b20470c81432a5050b /doc/crypto/BN_bn2bin.pod | |
parent | Update all links so they will be rendered better. (diff) | |
download | openssl-e93f9a3284c799bb851afaeddd56ed502ba189b6.tar.xz openssl-e93f9a3284c799bb851afaeddd56ed502ba189b6.zip |
Run ispell.
Clean up bn_mont.c.
Diffstat (limited to 'doc/crypto/BN_bn2bin.pod')
-rw-r--r-- | doc/crypto/BN_bn2bin.pod | 4 |
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 |