Made link of reference
authorRichard Levitte <levitte@openssl.org>
Thu, 27 Jan 2000 02:29:19 +0000 (02:29 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 27 Jan 2000 02:29:19 +0000 (02:29 +0000)
doc/crypto/BN_add.pod
doc/crypto/RSA_get_ex_new_index.pod

index 16bb5d466a2367da71b586759c24580fe1957907..2f6a3b448f6fbdbbed0547b3047178edb9ea1d2b 100644 (file)
@@ -40,7 +40,7 @@ B<r> may be the same B<BIGNUM> as B<a> or B<b>.
 BN_sub() subtracts B<b> from B<a> and places the result in B<r> (C<r=a-b>).
 
 BN_mul() multiplies B<a> and B<b> and places the result in B<r> (C<r=a*b>).
-For multiplication by powers of 2, use BN_lshift(3).
+For multiplication by powers of 2, use L<BN_lshift(3)|BN_lshift(3)>.
 
 BN_div() divides B<a> by B<d> and places the result in B<dv> and the
 remainder in B<rem> (C<dv=a/d, rem=a%d>). Either of B<dv> and B<rem> may
index 3e2c525901684aa6019892426502ca92ad8de338..2d3d0a73904976260e0c1733f5a075776b8dbc8f 100644 (file)
@@ -111,7 +111,7 @@ present in the parent RSA structure when it is called.
 
 =head1 SEE ALSO
 
-rsa(3)
+L<rsa(3)|rsa(3)>
 
 =head1 HISTORY