Re: [DOC PATCH] [perl #1165] crypt accepts any character as salt
authorCasey West <casey@geeknest.com>
Fri, 9 May 2003 15:25:59 +0000 (11:25 -0400)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Fri, 9 May 2003 19:33:25 +0000 (19:33 +0000)
Message-ID: <20030509192559.GS49820@geeknest.com>

p4raw-id: //depot/perl@19463

pod/perlfunc.pod

index d62f61a..b7c1aaf 100644 (file)
@@ -870,7 +870,10 @@ different strings.
 
 When choosing a new salt create a random two character string whose
 characters come from the set C<[./0-9A-Za-z]> (like C<join '', ('.',
-'/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]>).
+'/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]>).  This set of
+characters is just a recommendation; the characters allowed in
+the salt depend solely on your system's crypt library, and Perl can't
+restrict what salts C<crypt()> accepts.
 
 Here's an example that makes sure that whoever runs this program knows
 their own password: