comparison roundup/password.py @ 1231:c0a40d7ec47c

fix typo
author Gordon B. McMillan <gmcm@users.sourceforge.net>
date Thu, 26 Sep 2002 13:38:35 +0000
parents 5c581b120738
children 2e557762ee87
comparison
equal deleted inserted replaced
1230:cab21a36286d 1231:c0a40d7ec47c
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17 # 17 #
18 # $Id: password.py,v 1.6 2002-09-26 07:39:21 richard Exp $ 18 # $Id: password.py,v 1.7 2002-09-26 13:38:35 gmcm Exp $
19 19
20 __doc__ = """ 20 __doc__ = """
21 Password handling (encoding, decoding). 21 Password handling (encoding, decoding).
22 """ 22 """
23 23
24 import sha, re, string 24 import sha, re, string
25 try: 25 try:
26 import crypt: 26 import crypt
27 except: 27 except:
28 crypt = None 28 crypt = None
29 pass 29 pass
30 30
31 def encodePassword(plaintext, scheme, other=None): 31 def encodePassword(plaintext, scheme, other=None):

Roundup Issue Tracker: http://roundup-tracker.org/