RSA security in light of news

from blog John D. Cook, | ↗ original
A recent article reported on the successful factoring of a 512-bit RSA key. The process took $8 worth of rented computing power. What does that say about the security of RSA encryption? The following Python function estimates the computation steps required to factor a number b bits long using the best known algorithm. We’re going […] The post RSA...