summaryrefslogtreecommitdiffstats
path: root/doc/crypto/DSA_do_sign.pod
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-08-17 15:21:33 -0400
committerRich Salz <rsalz@openssl.org>2015-08-21 15:11:50 -0400
commit9b86974e0c705ea321ddbc9a9d8562c894809e5b (patch)
tree69b6437896ca7728ebec6b7d3be7b217149d9862 /doc/crypto/DSA_do_sign.pod
parent3da9505dc02b0594633c73a11343f54bb5dbf536 (diff)
Fix L<> content in manpages
L<foo|foo> is sub-optimal If the xref is the same as the title, which is what we do, then you only need L<foo>. This fixes all 1457 occurrences in 349 files. Approximately. (And pod used to need both.) Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'doc/crypto/DSA_do_sign.pod')
-rw-r--r--doc/crypto/DSA_do_sign.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/crypto/DSA_do_sign.pod b/doc/crypto/DSA_do_sign.pod
index 5dfc733b20..7a1970b2aa 100644
--- a/doc/crypto/DSA_do_sign.pod
+++ b/doc/crypto/DSA_do_sign.pod
@@ -19,7 +19,7 @@ DSA_do_sign() computes a digital signature on the B<len> byte message
digest B<dgst> using the private key B<dsa> and returns it in a
newly allocated B<DSA_SIG> structure.
-L<DSA_sign_setup(3)|DSA_sign_setup(3)> may be used to precompute part
+L<DSA_sign_setup(3)> may be used to precompute part
of the signing operation in case signature generation is
time-critical.
@@ -32,13 +32,13 @@ key.
DSA_do_sign() returns the signature, NULL on error. DSA_do_verify()
returns 1 for a valid signature, 0 for an incorrect signature and -1
on error. The error codes can be obtained by
-L<ERR_get_error(3)|ERR_get_error(3)>.
+L<ERR_get_error(3)>.
=head1 SEE ALSO
-L<dsa(3)|dsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, L<rand(3)|rand(3)>,
-L<DSA_SIG_new(3)|DSA_SIG_new(3)>,
-L<DSA_sign(3)|DSA_sign(3)>
+L<dsa(3)>, L<ERR_get_error(3)>, L<rand(3)>,
+L<DSA_SIG_new(3)>,
+L<DSA_sign(3)>
=head1 HISTORY