Search:

Type: Posts; User: serji

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    10,288

    Thanks for your reply Adak. I am now getting the...

    Thanks for your reply Adak. I am now getting the idea. I changed loops to this.


    for (p=2;p<100;p++)
    {
    for (q=2;q<100;q++)
    {
    n=p*q;
    inv=(p-1)*(q-1);
    for (e=2;e<100;e++)
  2. Replies
    5
    Views
    10,288

    Yes this is my original one. It works if you...

    Yes this is my original one. It works if you enter p,q,e values and encrypted message. It succesfully decrypts it. I didn't send 3 nested loops because it wasn't working but it was:



    for...
  3. Replies
    5
    Views
    10,288

    RSA Decryption - Brute Force

    Hi everyone,

    I am working a project for RSA Algorithm. I need to encrypt/decrypt messages for certain p,q,e values. I have done that. (Even though it was hard). Now what i need help is about...
Results 1 to 3 of 3