Metadata-Version: 2.1
Name: pymd6
Version: 0.1.0
Summary: Simple library to calculate MD6 checksum
Home-page: https://github.com/PockusaevAndrey/pymd6
Author: Pokusaev Andrey
Author-email: pockusaevandrey@yandex.ru
License: MIT
Keywords: MD6
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Simple library to calculate MD6 checksum

### Example
```python
from MD6 import MD6

if __name__ == '__main__':
    md6 = MD6()
    md6_hash = md6("Hello World!!")
    print(str(md6_hash)) # show hex
    print(md6_hash.raw()) # show raw utf-8 string
```


