fastest calculation of largest prime factor of 512 bit number in python
- by miraclesoul
dear all,
i am simulating my crypto scheme in python, i am a new user to it.
p = 512 bit number and i need to calculate largest prime factor for it, i am looking for two things:
Fastest code to process this large prime factorization
Code that can take 512 bit of number as input and can handle it.
I have seen different implementations in other…