Metadata-Version: 2.1
Name: RHash
Version: 1.4.2
Summary: Windows binary wheels for RHash
Home-page: https://github.com/rhash/RHash
Maintainer: Dobatymo
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: COPYING

# RHash

## License

All code except `setup.py` is licensed under the 'BSD Zero Clause License'. `setup.py` is licensed under the 'ISC License'.

## Example

```python
import rhash
ctx = rhash.RHash(rhash.CRC32 | rhash.MD5)
ctx.update('Hello, ').update('world!').finish()
assert 'EBE6C6E6' == ctx.HEX(rhash.CRC32)
assert '6cd3556deb0da54bca060b4c39479839' == ctx.hex(rhash.MD5)
```


