Cracking a N bit RSA modulo numbers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:26:18Z http://stackoverflow.com/feeds/question/877317 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/877317/cracking-a-n-bit-rsa-modulo-numbers 1 Cracking a N bit RSA modulo numbers Calm Storm 2009-05-18T11:45:46Z 2009-05-27T09:18:37Z <p>This is related to my <a href="http://stackoverflow.com/questions/858476/12-digit-number-java-encryption-question">previous post</a>, where my only option was to have a RSA algorithm which seemed relatively weak. Let us assume that I want to encode a 35 bit number (From 0 upto 34359738367) with a 36 bit modulo (between 34359738368 upto 68719476735). </p> <p>Referring to <a href="http://en.wikipedia.org/wiki/RSA" rel="nofollow">http://en.wikipedia.org/wiki/RSA</a> I can see that my n is between 34359738368 upto 68719476735 a random totient (of the form p-1 * q-1). I pick a random d and e. I encode a number and show that on the UI. </p> <p>For the purpose of argument let us assume that a user can see upto 1,000 such outputs. Can he use some algorithms like Polla's or anything of the like to crack my d,e or n and thereby start predicting new numbers? If so how hard is it going to be ? (By just knowing say 1000 sets of inputs/outputs)</p> <p>As an example (consider 6 outputs as sample in input/output format), </p> <ol> <li>10001621865,31116156015</li> <li>10001621866,33031668326</li> <li>10001621867,37351399313</li> <li>10001621868,06071714212</li> <li>10001621869,01188523761</li> <li>10001621870,18341011998</li> </ol> <p>Can someone tell me what my n, d, e was? (N between 34359738368 upto 68719476735)</p> <p>I simply want to know how crackable it is, so if you could give me any information on how long, how fast, how many outputs does one has to see, what algorithms can one use etc. It will be great.</p> <p>PS: User does not see the "e" like the standard RSA algorithm. He can only see the input output sets.</p> <p><strong><em>DETAILS ADDED</em></strong> I am trying to present a sequential user-id from db to the user. Because it is sequential I dont want a user to guess another user's id by doing a few registrations. To avoid this I have to scramble it to a &lt;= 12 digit number. There were lot of constraints around this which were explained in <a href="http://stackoverflow.com/questions/858476/12-digit-number-java-encryption-question">this question </a>.</p> <p>Also the value of n,d and e is not known to the user. The maximum a user can see is a few input ouput samples (by way of registering repeatedly)</p> <p>Accepting the answer posted by Accipitridae since the "Jacobi" algorithm can be used to crack this in a matter of few seconds. Without knowing n, e or p.</p> http://stackoverflow.com/questions/877317/cracking-a-n-bit-rsa-modulo-numbers/878171#878171 4 Answer by AlbertoPL for Cracking a N bit RSA modulo numbers AlbertoPL 2009-05-18T15:01:13Z 2009-05-18T16:10:22Z <p>RSA is vulnerable against a Chosen-Ciphertext attack. That is, say we want to break ciphertext y, we can use one of the ciphertext-plaintext pairs to break it.</p> <p>How to break it:</p> <p>choose an x0 and y0, where x0 and y0 is a plaintext-ciphertext pair that has been provided.</p> <p>y1 = y0*y mod n y1 is another one of the 1000 ciphertexts given to the user that satisfies this criteria. x1 is the decryption of y1, which is also given, this means:</p> <p>x1 = y1^d mod n (this has been given to us, we already know x1)</p> <p>x1 = (y0*y)^d mod n x1 = y0^d * y^d mod n Ξ x0*x</p> <p>x1*x0^-1 = x</p> <p>x is the decryption of y.</p> <p>This is of course dependent on whether or not y0*y mod n produces another ciphertext that we already have, and since we have only 1000 such pairs to work with, it is unlikely but not unfeasible to break. You just have to choose your pairs extremely carefully.</p> <p>I'd also like to add that the size of n you're working with allows a factoring heuristic to find the prime factorization of n fairly quickly. Also, RSA is vulnerable to timing attacks, but that can be easily thwarted.</p> <p><strong>With added info:</strong> Without knowing n, d, or e, there is absolutely no information provided at all, which means guessing combinations of n, d, or e is as good as guessing the plaintext itself. To find n and e, there are at least 43,359,738,367 combinations of n to guess as well as all of the combinations e could be. It's not easy for someone even with 1000 ciphertext-plaintext pairs to be able to crack n and e.</p> http://stackoverflow.com/questions/877317/cracking-a-n-bit-rsa-modulo-numbers/879178#879178 1 Answer by Accipitridae for Cracking a N bit RSA modulo numbers Accipitridae 2009-05-18T18:43:34Z 2009-05-19T16:54:08Z <p>An attacker can guess a factor p of n and e mod (p-1). Each guess can be checked by taking a message m, computing m^e mod p and then comparing with c mod p, where c is the corresponding ciphertext. Since p and e mod (p-1) are maybe 20 bits each, this means that the security of the scheme is not larger than 40 bits. </p> <p>But 40 bits is only a very crude upper bound. An attacker can do much better. For example he can guess a factor p. Then he computes the Jacobi symbols of the messages and ciphertexts. If a message m is a quadratic residue mod p then the ciphertext must be a quadratic residue mod p and vice versa. Hence if this relation is not satisfied for a message/ciphertext pair he can reject the guess for p. Or the attacker can compute discrete logarithms between message and ciphertext. This gives a much faster candidate for e mod (p-1).</p> <p>That should give a security level of 20-30 bits, hence require a few seconds to break. If you extend your number of samples to 20 I might try some benchmarks.</p> <p><strong>Update:</strong> Since you didn't give me 20 samples to run an experiment, I had to generate them myself. With the following samples</p> <pre><code>m = 10001621865 c = 31116156015 m = 10001621866 c = 33031668326 m = 10001621867 c = 37351399313 m = 10001621868 c = 6071714212 m = 10001621869 c = 1188523761 m = 10001621870 c = 18341011998 m = 10001621871 c = 7620400191 m = 10001621872 c = 36106912203 m = 10001621873 c = 37615263725 m = 10001621874 c = 7795237418 m = 10001621875 c = 34774459868 m = 10001621876 c = 4555747045 m = 10001621877 c = 33123599635 m = 10001621878 c = 34836418207 m = 10001621879 c = 33962453633 m = 10001621880 c = 6258371439 m = 10001621881 c = 7500991556 m = 10001621882 c = 5071836635 m = 10001621883 c = 911495880 m = 10001621884 c = 39558568485 </code></pre> <p>as input, the algorithm described above finds the factors 201821 and 206153 in 20ms. As described this does not need to know e, although your choice of e=65537 is easy to guess and can be exploited as well.</p> <p>The strength of RSA is that it is based on the difficulty of factoring large integers. Here you remove this difficulty and what remains are all the weaknesses (i.e. mathematical relations) of RSA. Building a block cipher based on RSA is a horrible idea. I really don't see why you don't want to use a Luby-Rackoff construction as I proposed earlier.</p> http://stackoverflow.com/questions/877317/cracking-a-n-bit-rsa-modulo-numbers/903511#903511 0 Answer by Andreas Magnusson for Cracking a N bit RSA modulo numbers Andreas Magnusson 2009-05-24T10:47:21Z 2009-05-24T10:47:21Z <p>This is a horrible idea, 36 bit RSA?? Why not simply go with a block or stream-cipher? That way you get the 1:1 mapping and in a much securer way.</p> <p>An alternative solution that I would recommend would be to use a SHA hash as UID and store the sequential number for each user in the database as a separate column.</p>