cryptotools/Cryptotools/Utils/number.py
2026-01-11 09:19:22 +01:00

10 lines
148 B
Python

#!/usr/bin/env python3
COMPOSITE = 0
PRIME = 1
class Number:
def __init__(self):
self._int = int()
self._kind = COMPOSITE