-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GaussInt factoring #3
Comments
I found this online calculator doing superfast gaussian factoring: It factors 2082-digit prime in 3 seconds! The corresponding repo is here: "make gaussian" builds the executable.
I did fork that repo and made its output more Python friendly:
[ 1105 = 5*13*17 = (2²+1²)*(3²+2²)*(4²+1²) ] And used in my RSA_numbers_factored.py Gist:
For sum of square I ignored conjugant factors, but you could use all factors determined. P.S: |
Fails (probably long standing issue).
Proposed fix involves factoring norm over the integers (factors from numbthy.py) then adding a sum of squares routine to numbthy.py
The text was updated successfully, but these errors were encountered: