Earlier quoted context omitted.
So, 616 and 1233 digits, respectively.
Jinx! :-)
“This destroys the RSA cryptosystem”
81–90 of 152 posts
Re: “This destroys the RSA cryptosystem”
#82Earlier quoted context omitted.
Yeah, if this really is fast prime factoring, we're all in a lot of trouble.
If that's the case it's funny to think... NSA could have sat on this for years. Though that would be a really hard secret to keep.
Re: “This destroys the RSA cryptosystem”
#83The author of this paper is Claus P. Schnorr[1], of Schnorr signature fame. The paper has almost the same title as a 2017 draft paper[2] of his. The “This destroyes the RSA cryptosystem” quote is not in the linked paper abstract. This seems fishy. [1] https://en.wikipedia.org/wiki/Claus_P._Schnorr [2] https://www.math.uni-frankfurt.de/~dmst/research/papers/SVP9...
I was curious about the submission process for ePrint, it looks like there is supposed to be some vetting, even though it is explicitly not fact checked or peer reviewed. You do get papers from cranks and blockchainers but presumably Schnorr doesn't fall into those categories.
Re: “This destroys the RSA cryptosystem”
#84Would someone competent in cryptography please explain this to a “regular” programmer?
(You can also use it for digital signatures, where you provide a copy of the message and also "encrypt" the message with the private key; anyone can publicly decrypt it. If the "decrypted" message matches the original, then the signature proves that the message was signed by someone who has the private key.)
RSA works by starting with two large random prime numbers P and Q. You multiply P and Q to get a number M, and that number becomes part of the public key. An attacker who knows P and Q can compute your private key and decrypt your messages.
RSA assumes that it's computationally infeasible to factor M back into P and Q. It's supposed to be something like O(2^n), where n is the length of M.
A fast factorization algorithm breaks that assumption, allowing attackers to decrypt messages and forge digital signatures.
If Schorr has found an algorithm that does this, I would say it "destroyes the RSA cryptosystem."
(My guess: it probably doesn't work, because drafts of this paper have been out for a few years and the sky hasn't fallen yet.)
Re: “This destroys the RSA cryptosystem”
#85The website is being hugged to death, but archive.org has scraped the PDF: https://web.archive.org/web/20210302215033/https://eprint.ia...
The linked one is: received 1 Mar 2021
The PDF is: work in progress 31.10.2019
Re: “This destroys the RSA cryptosystem”
#86Earlier quoted context omitted.
If that's the case it's funny to think... NSA could have sat on this for years. Though that would be a really hard secret to keep.
RSA has always been a lot weaker than it seems at first... I mean, people have been moving from 1024 to 2048 bit primes... The biggest number I could conceivably brute force is probably about 2^50. Maybe 2^60 with a big budget, or 2^65 with a team of ASIC designers. The mere fact that 2^1024 is considered risky tells you how far from ideal RSA is!!
But RSA is about a thousand times slower than double-SHA256, yet it still needs such large keys for security. That's because nobody is going to brute-force RSA, there are far better options. Like the General Number Field Sieve. Of course that's still exponential, this paper claims to be polynomial time for the vector-finding portion, not sure about overall. I've only skimmed it, and it's rather dense.
Re: “This destroys the RSA cryptosystem”
#87Earlier quoted context omitted.
I've held the theory that if anybody found something like fast prime factoring or a P = NP proof, they'd get assassinated pretty quickly. It'd be in basically every government's interest to get the knowledge, then make sure nobody else has it.
Somebody has been watching a lot of television.
Re: “This destroys the RSA cryptosystem”
#88Earlier quoted context omitted.
> work in progress 31.10.2019 ^ Date on the pdf
Yes, that's what I meant with dated. So the linked paper is a work in progress from half a year ago, but presented today on ePrint and with an abstract that has extra text added. I can not determine if this "discovery" could actually break any practically operating RSA systems. Considering how that is probably true for most people, that could even be the intent here. The claim that this will destroy RSA cryptosystems…
Re: “This destroys the RSA cryptosystem”
#89Earlier quoted context omitted.
> work in progress 31.10.2019 ^ Date on the pdf
Yes, that's what I meant with dated. So the linked paper is a work in progress from half a year ago, but presented today on ePrint and with an abstract that has extra text added. I can not determine if this "discovery" could actually break any practically operating RSA systems. Considering how that is probably true for most people, that could even be the intent here. The claim that this will destroy RSA cryptosystems…
Yes, the person you are encrypting something towards is responsible for ensuring that encryption is secure. No matter how secure you make the cryptography, the other party could still just leak the key...
Re: “This destroys the RSA cryptosystem”
#90Earlier quoted context omitted.
If that's the case it's funny to think... NSA could have sat on this for years. Though that would be a really hard secret to keep.
RSA has always been a lot weaker than it seems at first... I mean, people have been moving from 1024 to 2048 bit primes... The biggest number I could conceivably brute force is probably about 2^50. Maybe 2^60 with a big budget, or 2^65 with a team of ASIC designers. The mere fact that 2^1024 is considered risky tells you how far from ideal RSA is!!