Metadata-Version: 2.1
Name: drax-ecc
Version: 0.1.3
Summary: ECDH Crypto library for Drax
Author: Applica Software Guru
Author-email: info@applica.guru
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: numpy (>=1.26.4,<2.0.0)
Description-Content-Type: text/markdown

# drax_ecdh_py
Python wrapper for Drax ECDH C-library

### Installation 
To install the package you need to run the following command:

`$ python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps draxecdh`

### Usage 
Import ECDH crypto module in your code:

```python
from draxecdh import crypto

print(crypto.get_aes_chunk_size())
```

