Metadata-Version: 2.4
Name: safegcd
Version: 0.1.1
Summary: Minimal divstep primitive for safegcd/Bernstein–Yang style experiments
Author: Cesare Huang
License-Expression: MIT
Keywords: cryptography,number-theory,gcd,divstep,safegcd
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# safegcd

Minimal `divstep(delta, f, g)` primitive for safegcd / Bernstein–Yang style experimentation.

## Install (dev)
```bash
python -m pip install -e .
```

## Usage
```python
from safegcd import divstep
print(divstep(1, 7, 10))
```
