show/hide this revision's text 8 deleted 1523 characters in body

MATH ADDED

Accipitriade: I am unaccepting

Accepting the solution answer posted since you seem to have cracked p and q (and also ur algo does not need e?) Can you please post some code sample for this? will ya?

Brute Force:Let us assume our attacker knew that all outputs 11 digits and inputs are 11 digits. Also assume the attacker knows modulus must be random between 34359738368 and 68719476735 (by Accipitridae since that is the 36 bit range) and all inputs are in 35 bits range. Because n is 36 bits, anyone who sees the standard RSA code will know that p and q are to be 18 bits each so that p * q are 36 bits in length.

  • Number of primes that are 18 bits i.e between 2 ^ 17 and 2 ^ 18 = 10749
  • Number of possibilities of picking 2 numbers = 57,765,126 (i.e, 10749 * 10748/2)
  • Number of choices of E co-prime to N = approx 28,882,563 (read foot note for approximation) PS: Like I have mentioned many time already E is not published.
  • Number of N,E choices = 3) * 2) = 1,668,404,890,897,938 I think the above number would "Jacobi" algorithm can be difficult used to crack . Don't you think so?

  • Please note I used 65537 for e because that was what standard RSA used. In reality I will choose any prime number or for that this in a matter any number co-prime to my n will suffice.

  • Calculating number of coprimes for a 11 digit number was difficult so I noted down some numbers for which I could calculate co-primesfew seconds. I see the number of co-primes to such n is approx 0.8 * Without knowing n(so I assumed 0.5 to be a safe factor)p * q - (Number of numbers co-prime to , e or p* q)
  • No of Co primes for 853751 = 786509
  • No of Co primes for 625249 = 558293
  • No of Co primes for 572839 = 505957 .

  • show/hide this revision's text 7 deleted 84 characters in body

    This is related to my previous post, 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).

    Referring to http://en.wikipedia.org/wiki/RSA 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.

    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)

    As an example (consider 6 outputs as sample in input/output format),

    1. 10001621865,31116156015
    2. 10001621866,33031668326
    3. 10001621867,37351399313
    4. 10001621868,06071714212
    5. 10001621869,01188523761
    6. 10001621870,18341011998

    Can someone tell me what my n, d, e was? (N between 34359738368 upto 68719476735)

    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.

    PS: User does not see the "e" like the standard RSA algorithm. He can only see the input output sets.

    DETAILS ADDED 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 <= 12 digit number. There were lot of constraints around this which were explained in this question .

    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)

    MATH ADDED

    Accipitriade: I am unaccepting this the solution posted since you seem to have cracked p and q (and also ur algo does not need e?) Can you please post some code sample for this? will ya?

    Brute Force: After accepting correct answer, I saw comments along the lines of needing the Math. Let us assume our attacker knew that all outputs 11 digits and inputs are 11 digits. Also assume the attacker knows modulus must be random between 34359738368 and 68719476735 (since that is the 36 bit range) and all inputs are in 35 bits range. Because n is 36 bits, anyone who sees the standard RSA code will know that p and q are to be 18 bits each so that p * q are 36 bits in length.

    1. Number of primes that are 18 bits i.e between 2 ^ 17 and 2 ^ 18 = 10749
    2. Number of possibilities of picking 2 numbers = 57,765,126 (i.e, 10749 * 10748/2)
    3. Number of choices of E co-prime to N = approx 28,882,563 (read foot note for approximation) PS: Like I have mentioned many time already E is not published.
    4. Number of N,E choices = 3) * 2) = 1,668,404,890,897,938 I think the above number would be difficult to crack. Don't you think so?

    5. Please note I used 65537 for e because that was what standard RSA used. In reality I will choose any prime number or for that matter any number co-prime to my n will suffice.

    6. Calculating number of coprimes for a 11 digit number was difficult so I noted down some numbers for which I could calculate co-primes. I see the number of co-primes to such n is approx 0.8 * n (so I assumed 0.5 to be a safe factor) p * q - (Number of numbers co-prime to p * q)
    7. No of Co primes for 853751 = 786509
    8. No of Co primes for 625249 = 558293
    9. No of Co primes for 572839 = 505957
    show/hide this revision's text 6 added 195 characters in body

    This is related to my previous post, 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).

    Referring to http://en.wikipedia.org/wiki/RSA 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.

    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)

    As an example (consider 6 outputs as sample in input/output format),

    1. 10001621865,31116156015
    2. 10001621866,33031668326
    3. 10001621867,37351399313
    4. 10001621868,06071714212
    5. 10001621869,01188523761
    6. 10001621870,18341011998

    Can someone tell me what my n, d, e was? (N between 34359738368 upto 68719476735)

    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.

    PS: User does not see the "e" like the standard RSA algorithm. He can only see the input output sets.

    DETAILS ADDED 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 <= 12 digit number. There were lot of constraints around this which were explained in this question .

    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)

    MATH ADDED Accipitriade: I am unaccepting this solution since you seem to have cracked p and q (and also ur algo does not need e?) Can you please post some code sample for this? will ya?

    Brute Force: After accepting correct answer, I saw comments along the lines of needing the Math. Let us assume our attacker knew that all outputs 11 digits and inputs are 11 digits. Also assume the attacker knows modulus must be random between 34359738368 and 68719476735 (since that is the 36 bit range) and all inputs are in 35 bits range. Because n is 36 bits, anyone who sees the standard RSA code will know that p and q are to be 18 bits each so that p * q are 36 bits in length.

    1. Number of primes that are 18 bits i.e between 2 ^ 17 and 2 ^ 18 = 10749
    2. Number of possibilities of picking 2 numbers = 57,765,126 (i.e, 10749 * 10748/2)
    3. Number of choices of E co-prime to N = approx 28,882,563 (read foot note for approximation) PS: Like I have mentioned many time already E is not published.
    4. Number of N,E choices = 3) * 2) = 1,668,404,890,897,938 I think the above number would be difficult to crack. Don't you think so?

    5. Please note I used 65537 for e because that was what standard RSA used. In reality I will choose any prime number or for that matter any number co-prime to my n will suffice.

    6. Calculating number of coprimes for a 11 digit number was difficult so I noted down some numbers for which I could calculate co-primes. I see the number of co-primes to such n is approx 0.8 * n (so I assumed 0.5 to be a safe factor) p * q - (Number of numbers co-prime to p * q)
    7. No of Co primes for 853751 = 786509
    8. No of Co primes for 625249 = 558293
    9. No of Co primes for 572839 = 505957
    show/hide this revision's text 5 added 76 characters in body
    show/hide this revision's text 4 added 8 characters in body
    show/hide this revision's text 3 added 486 characters in body
    show/hide this revision's text 2 edited tags
    show/hide this revision's text 1