summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BN_add.pod
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-01-27 01:25:31 +0000
committerRichard Levitte <levitte@openssl.org>2000-01-27 01:25:31 +0000
commitbb075f883356589425b7e57f788c7498a83b0219 (patch)
tree83b7157529860efb0743abd6c8313b95b6452c37 /doc/crypto/BN_add.pod
parent52732b38da995490fa33f8062a25d37cd7e7abcc (diff)
Update all links so they will be rendered better.
Diffstat (limited to 'doc/crypto/BN_add.pod')
-rw-r--r--doc/crypto/BN_add.pod11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/crypto/BN_add.pod b/doc/crypto/BN_add.pod
index b2bfe0c2e6..3c0bd7104f 100644
--- a/doc/crypto/BN_add.pod
+++ b/doc/crypto/BN_add.pod
@@ -55,8 +55,8 @@ B<rem> (C<rem=a%m>).
BN_mod_mul() multiplies B<a> by B<b> and finds the remainder when
divided by B<m> (C<r=(a*b)%m>). B<r> may be the same B<BIGNUM> as B<a>
or B<b>. For a more efficient algorithm, see
-L<BN_mod_mul_montgomery(3)>; for repeated computations using the same
-modulus, see L<BN_mod_mul_reciprocal(3)>.
+L<BN_mod_mul_montgomery(3)|BN_mod_mul_montgomery(3)>; for repeated
+computations using the same modulus, see L<BN_mod_mul_reciprocal(3)|BN_mod_mul_reciprocal(3)>.
BN_exp() raises B<a> to the B<p>-th power and places the result in B<r>
(C<r=a^p>). This function is faster than repeated applications of
@@ -70,7 +70,7 @@ places the result in B<r>. B<r> may be the same B<BIGNUM> as B<a> or
B<b>.
For all functions, B<ctx> is a previously allocated B<BN_CTX> used for
-temporary variables; see L<BN_CTX_new(3)>.
+temporary variables; see L<BN_CTX_new(3)|BN_CTX_new(3)>.
Unless noted otherwise, the result B<BIGNUM> must be different from
the arguments.
@@ -79,11 +79,12 @@ the arguments.
For all functions, 1 is returned for success, 0 on error. The return
value should always be checked (e.g., C<if (!BN_add(r,a,b)) goto err;>).
-The error codes can be obtained by ERR_get_error(3).
+The error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>.
=head1 SEE ALSO
-bn(3), err(3), BN_CTX_new(3), BN_add_word(3), BN_set_bit(3)
+L<bn(3)|bn(3)>, L<err(3)|err(3)>, L<BN_CTX_new(3)|BN_CTX_new(3)>,
+L<BN_add_word(3)|BN_add_word(3)>, L<BN_set_bit(3)|BN_set_bit(3)>
=head1 HISTORY