示例#1
0
 def hexdigest(self):
     """
     Returns the hash value of this hashing object as a string
     containing hexadecimal digits. Lowercase letters are used
     for the digits 'a' through 'f'. Like the .digest() method,
     this method doesn't alter the object.
     """
     return b2h(self.digest())
示例#2
0
文件: hashes.py 项目: xriss/gamecake
 def hexdigest(self):
     """
     Returns the hash value of this hashing object as a string
     containing hexadecimal digits. Lowercase letters are used
     for the digits 'a' through 'f'. Like the .digest() method,
     this method doesn't alter the object.
     """
     return b2h(self.digest())