Missed some, cryptically.
Jarkko Hietaniemi [Tue, 11 Mar 2003 06:09:05 +0000 (06:09 +0000)]
p4raw-id: //depot/perl@18908

pod/perlfunc.pod

index a6f5771..ae4e93f 100644 (file)
@@ -857,7 +857,7 @@ cryptography.  (For that, see your nearby CPAN mirror.)
 
 When verifying an existing encrypted string you should use the
 encrypted text as the salt (like C<crypt($plain, $crypted) eq
-$crypted>).  This allows your code to work with the standard C<crypt>
+$crypted>).  This allows your code to work with the standard L<crypt|\crypt>
 and with more exotic implementations.  In other words, do not assume
 anything about the returned string itself, or how many bytes in
 the encrypted string matter.
@@ -893,7 +893,7 @@ their own password:
 Of course, typing in your own password to whoever asks you
 for it is unwise.
 
-The C<crypt> function is unsuitable for encrypting large quantities
+The L<crypt|\crypt> function is unsuitable for encrypting large quantities
 of data, not least of all because you can't get the information
 back.  Look at the F<by-module/Crypt> and F<by-module/PGP> directories
 on your favorite CPAN mirror for a slew of potentially useful