_scons_hashlib.py
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:3k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. #
  2. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining
  5. # a copy of this software and associated documentation files (the
  6. # "Software"), to deal in the Software without restriction, including
  7. # without limitation the rights to use, copy, modify, merge, publish,
  8. # distribute, sublicense, and/or sell copies of the Software, and to
  9. # permit persons to whom the Software is furnished to do so, subject to
  10. # the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included
  13. # in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  16. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. #
  23. __doc__ = """
  24. hashlib backwards-compatibility module for older (pre-2.5) Python versions
  25. This does not not NOT (repeat, *NOT*) provide complete hashlib
  26. functionality.  It only wraps the portions of MD5 functionality used
  27. by SCons, in an interface that looks like hashlib (or enough for our
  28. purposes, anyway).  In fact, this module will raise an ImportError if
  29. the underlying md5 module isn't available.
  30. """
  31. __revision__ = "src/engine/SCons/compat/_scons_hashlib.py 3057 2008/06/09 22:21:00 knight"
  32. import md5
  33. import string
  34. class md5obj:
  35.     md5_module = md5
  36.     def __init__(self, name, string=''):
  37.         if not name in ('MD5', 'md5'):
  38.             raise ValueError, "unsupported hash type"
  39.         self.name = 'md5'
  40.         self.m = self.md5_module.md5()
  41.     def __repr__(self):
  42.         return '<%s HASH object @ %#x>' % (self.name, id(self))
  43.     def copy(self):
  44.         import copy
  45.         result = copy.copy(self)
  46.         result.m = self.m.copy()
  47.         return result
  48.     def digest(self):
  49.         return self.m.digest()
  50.     def update(self, arg):
  51.         return self.m.update(arg)
  52.     if hasattr(md5.md5(), 'hexdigest'):
  53.         def hexdigest(self):
  54.             return self.m.hexdigest()
  55.     else:
  56.         # Objects created by the underlying md5 module have no native
  57.         # hexdigest() method (*cough* 1.5.2 *cough*), so provide an
  58.         # equivalent lifted from elsewhere.
  59.         def hexdigest(self):
  60.             h = string.hexdigits
  61.             r = ''
  62.             for c in self.digest():
  63.                 i = ord(c)
  64.                 r = r + h[(i >> 4) & 0xF] + h[i & 0xF]
  65.             return r
  66. new = md5obj
  67. def md5(string=''):
  68.     return md5obj('md5', string)