According to this primer on elliptic curves by Ars Technica, when composite numbers get "too" big, they become easier to factorize with Quadratic Sieve and General Number Field Sieve.
While this is not explained in detail on the site, it is a common understanding that RSA encryption is in a squeeze trap where the RSA modulus is getting larger and larger as factorizing algorithms and equipment get more and more capable, at the same time getting closer to some sort of ceiling where, apparently the resulting security of the modulus drops.
Please enlighten me: Why is it not possible to increase the size of RSA keys indefinitely?
time openssl genrsa -f4 -out outkey 16384
. Note that this searches for two 8192 bit primes, and searching for primes is non-deterministic (i.e. it may take a short time, it may also take very long). Of course the speed of decrypting or signing something is more of an issue on servers. – Maarten Bodewes Dec 14 '16 at 15:05