Documentation changes.

This commit is contained in:
Jeremy Fincher 2003-08-20 07:32:49 +00:00
parent 06c36d283a
commit 88e47b463a

View File

@ -31,11 +31,6 @@
""" """
Provides commands available only on Unix. Provides commands available only on Unix.
Commands include:
errno
progstats
crypt
""" """
from baseplugin import * from baseplugin import *
@ -135,7 +130,9 @@ class Unix(callbacks.Privmsg):
"""<password> [<salt>] """<password> [<salt>]
Returns the resulting of doing a crypt() on <password> If <salt> is Returns the resulting of doing a crypt() on <password> If <salt> is
not given, uses a random salt. not given, uses a random salt. If running on a glibc2 system,
prepending '$1$' to your salt will cause crypt to return an MD5sum
based crypt rather than the standard DES based crypt.
""" """
def makeSalt(): def makeSalt():
s = '\x00' s = '\x00'