https://github.com/piotrszyma/mcl-python
Python bindings for mcl library by herumi
https://github.com/piotrszyma/mcl-python
bindings cryptography pairing
Last synced: about 1 year ago
JSON representation
Python bindings for mcl library by herumi
- Host: GitHub
- URL: https://github.com/piotrszyma/mcl-python
- Owner: piotrszyma
- License: mit
- Created: 2020-01-25T09:40:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-15T20:37:50.000Z (over 1 year ago)
- Last Synced: 2025-04-14T04:54:27.718Z (about 1 year ago)
- Topics: bindings, cryptography, pairing
- Language: Python
- Homepage:
- Size: 77.1 KB
- Stars: 4
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mcl-python
`mcl-python` is a Python library that creates bindings for [mcl](https://github.com/herumi/mcl) library by 光成滋生 MITSUNARI Shigeo(herumi@nifty.com).
## Supported curves
For now the only supported curve is `BLS12_384` (named in library `BN384_256`)
## Installation
**This package requires [mcl](https://github.com/herumi/mcl) to be preinstalled.**
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install mcl-python.
```bash
pip install mcl
```
## Usage
```python
import mcl
fr = new mcl.Fr()
fr.setByCSPRNG()
```
For more examples, please check [tests](tests/).
## Tests
Tests are written in `unittest`.
```
python3 -m unittest discover tests/
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)