bcrypt.ctf/bcrypter/debug/constants.py

14 lines
305 B
Python
Raw Normal View History

2025-06-21 21:29:00 +10:00
'''
This file provides various methods for determining
properties, connections, etc for bcrypt's constants.
'''
from math import gcd
from bcrypt.hash.rev import H, K, M
def disint_gcds() -> None:
print(f'gcd(H,K): {gcd(H,K)}')
print(f'gcd(H,M): {gcd(H,M)}')
print(f'gcd(K,M): {gcd(K,M)}')