Home | Trees | Indices | Help |
|
---|
|
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Class Variables | |
digest_size = None The size of the resulting hash in bytes. |
Method Details |
|
Continue hashing of a message by consuming the next chunk of data. Repeated calls are equivalent to a single call with the concatenation of all the arguments. In other words:
is equivalent to:
|
Return the binary (non-printable) digest of the message that has been hashed so far. This method does not change the state of the hash object. You can continue updating the object after calling this function.
|
Return the printable digest of the message that has been hashed so far. This method does not change the state of the hash object.
|
Return a copy ("clone") of the hash object. The copy will have the same internal state as the original hash object. This can be used to efficiently compute the digests of strings that share a common initial substring.
|
Return a fresh instance of the hash object. Unlike the copy method, the internal state of the object is empty.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu May 24 09:02:37 2012 | http://epydoc.sourceforge.net |