uhashlib – hashing algorithm¶
Constructors¶
Methods¶
- 
hash.update(data)¶
- Feed more binary data into hash. 
- 
hash.digest()¶
- Return hash for all data passed thru hash, as a bytes object. After this method is called, more data cannot be fed into hash any longer. 
- 
hash.hexdigest()¶
- This method is NOT implemented. Use - ubinascii.hexlify(hash.digest())to achieve a similar effect.