Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 229 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 229 Bytes

bsgs.py Description- This solves DLP (Descrete Logrithem Problem) for x in the equation: g^x = h % p

Usage- python3 bsgs.py g h p

Example- python3 bsgs.py 13 5 37 25 is a solution for x Done