Jump to content

Transporter

Lifetime Sponsor
  • Posts

    438
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Transporter

  1. Holding a competition for Miss OSBot 2017 if you would like to enter post a fork pic with your username.
  2. can't hate what you haven't tried :P
  3. Transporter

    Why

    are all avatars the same size is dis bug?
  4. Tarnation you pineapple is flummery on Pizza.
  5. Think Alek would tell my to kms if i did that
  6. Make this intro for when loading OSBot
  7. Transporter

    Emotes

    Pretty sure it's @Alek and @Maldesto
  8. I know half you guys probably don't know what a gym is, but for the ones that do post you're gym songs here that get you pumped up.
  9. It's the algorithm for RSA encryption and decryption.
  10. Choose p = 3 and q = 11 Compute n = p * q = 3 * 11 = 33 Compute φ(n) = (p - 1) * (q - 1) = 2 * 10 = 20 Choose e such that 1 < e < φ(n) and e and n are coprime. Let e = 7 Compute a value for d such that (d * e) % φ(n) = 1. One solution is d = 3 [(3 * 7) % 20 = 1] Public key is (e, n) => (7, 33) Private key is (d, n) => (3, 33) The encryption of m = 2 is c = 27 % 33 = 29 The decryption of c = 29 is m = 293 % 33 = 2
×
×
  • Create New...