Metadata-Version: 2.4
Name: specrypto
Version: 1.2.0
Summary: A powerful mathematical toolkit including number theory, modular arithmetic, matrix operations, and crypto utilities
Home-page: https://github.com/SP-ecialise/specrypto
Author: S P Ecialise Srinivasan
Author-email: specialise.ceg@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pycryptodome
Requires-Dist: pandas
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# specrypto

`specrypto` is a mathematical and cryptographic toolkit including:
- Number theory
- Modular arithmetic
- Matrix operations
- RSA utilities
- Euler, Fermat, CRT, primality tests, and more.

## ðŸ§  Installation
```bash
pip install specrypto
```

## âš¡ Usage
```python
import mathtools

print(mathtools.gcd(42, 56))
print(mathtools.euler_totient(36))
```
