Prime Numbers & RSA Encryption Algorithm - Computerphile

Поділитися
Вставка
  • Опубліковано 7 лис 2024

КОМЕНТАРІ • 152

  • @davidgillies620
    @davidgillies620 3 роки тому +202

    It should be noted that RSA's exponent of 65537 is chosen because it is a) prime and b) 2^16 + 1 which is 10000000000000001 binary. This makes modular exponentiation very much faster without sacrificing security. We find e and d mod (p - 1)(q - 1) because that is how modular multiplicative inverses work. Out exponent e must be coprime to (p - 1)(q - 1) but it is very unlikely that if we choose e prime, a randomly chosen p and q will yield either p - 1 or q - 1 as a multiple of e. If we are unlucky, we just choose new primes. There are other factors in the choice of p and q that must be taken into consideration, such that even though they should be roughly the same size, they shouldn't be too close to sqrt(n) i.e. if you want a 2048 bit modulus, don't make both p and q be 1024 bits. Simple checks like this make cracking n much more difficult.

    • @esquilax5563
      @esquilax5563 3 роки тому +3

      Thanks for the additional info!

  • @Sashenke
    @Sashenke 3 роки тому +337

    Very hard to follow without visual representation of formulas and examples

    • @fedesoundsystem
      @fedesoundsystem 3 роки тому +9

      And the audio quality is not the top of the best :(

    • @p_d3r4
      @p_d3r4 3 роки тому

      open your terminal and cross-check, lol

    • @user46346bdtgry
      @user46346bdtgry 3 роки тому +4

      i studied RSA in college a few years ago, and our assignments would often involve encrypting/decrypting messages by hand, so i could follow it & it was a nice refresher but yeah I can’t imagine how many people new to the topic would follow it

    • @JyothiSwaroopM
      @JyothiSwaroopM 3 роки тому

      @@user46346bdtgry What's the course called?

    • @user-11528
      @user-11528 3 роки тому

      you need more ram

  • @charlieguan3618
    @charlieguan3618 2 роки тому +43

    OMG. This is my cyber security professor this semester in Nottingham University. His tutorial is really nice and it is so nice to see him in the youtube channel.

  • @paradicsompaszta
    @paradicsompaszta 3 роки тому +387

    Without visual presentation this is hard to follow. Math explanations without a whiteboard are like chess games without a chess board: very few can do it. Also where does p and q come from? You should have shown all the equations which were drawn on the iPad.

    • @yoish
      @yoish 3 роки тому +12

      My understanding is that they can be any pair of prime numbers that are different from each other. Choosing a different prime number combos will result in a different public and private key. You can correct me if I am wrong. I am trying to learn this too.

    • @Gunstick
      @Gunstick 3 роки тому +11

      Came here to say the same. I know how RSA works, and still I was a bit lost to what was going on. Needing to draw a whiteboard in your head is so much more difficult thatn to have it simply on screen. I know another channel which does nice visuals. I think it's called numberphile :-D

    • @1331scythe
      @1331scythe 3 роки тому +6

      P and Q are sufficiently large random prime numbers chosen at random at the time of key generation. There are some rules for choosing P and Q, but, for the most part they're chosen at random.

    • @deidara_8598
      @deidara_8598 3 роки тому +23

      tl;dr multiplying primes easy, factoring primes hard, p and q are secret primes used to encrypt stuff.
      Ok so here's the deal, RSA relies on what is known as the fundamental theorem of arithmetic, which basically states that all composite numbers can be represented as a unique product of primes. For example, the number 15 can be repersented as 3*5, and those are the only prime numbers you can multiply together to get 15. If you get two very large prime numbers _p_ and _q_ (could be any primes, just make them hard to guess) and multiply them together, you obtain a new number _n,_ known also as the modulus. The thing is that while it's very easy for computers to multiply the two primes together, factoring them is as currently understood very hard; _n,_ due to the fundamental theorem of arithmetic, can only be factored into _p_ and _q._
      The second trick to RSA is the Euler totient function. Basically the Euler totient function, in the case of a product of two primes p and q, spits out (p-1)*(q-1). The trick here is that you have to know the prime factors in order to calculate the Euler totient of _n_ (usually referred to as phi(n) or just phi), which means we can use to create a pair of public and private keys. By picking a number _e_ that shares no common prime factors with phi(n), we can do what's called the modular inverse to find a corresponding d such that e*d = 1 (mod phi(n)).
      Due to some special properties of the totient function, we can now pick any number _m,_ raise it to the power _e_ to obtain some number _c_ modulo _n._ If we now take _c_ and raise it to _d_ modulo _n,_ we obtain _m._ We cannot obtain _d_ without first knowing the prime factors of _n,_ because _d_ is calculated using the totient function, which can only be calculated by knowing the prime fators of _n._

    • @chickenlittle567
      @chickenlittle567 3 роки тому +5

      @@deidara_8598 thank you for taking your time and posting this

  • @giga-chicken
    @giga-chicken 3 роки тому +16

    This was very informative. With this I was able to make my own little set of encryption numbers by hand: powers of 7 and 63 reverse each other on modulo 253.

  • @oliviervanlier4947
    @oliviervanlier4947 3 роки тому +40

    The clock is a good way of explaining it visualy, but analytically show the full eqeation with the mod N or % N notation to avoid confusion ...

  • @Twisted_Code
    @Twisted_Code 3 роки тому +6

    this video let me finally break the barrier on my understanding of how the PK and SK are related and enable encryption: exponentiation under modular arithmetic!
    up till now, I got the understanding that the product of two primes is hard to factor unless you know one of the primes, but I didn't understand how that led to being able to create a one-way function that's reversible with another one-way function

  • @JmanNo42
    @JmanNo42 3 роки тому +14

    Probably the most convoluted way i ever heard to explain primeproducts, an RSA number is simply a primeproduct (two primes multiplied by eachother). You can use clockarithmetic to factor out the numbers not to explain what they are. Now find these two prime numbers is hard for some people to find, and it maybe that a single RSA 2048 primeproduct, simply can't be resolved in a lifetime on todays "homecomputers", on the other hand RSA 128 "message/challenge" which was used in the 90's is solvable in a matter of hours on a single 68040 Motorla processor found in any Amiga, Atari or Machintosh of the late 80's era.
    Many thought that factorisation was a NP hard problem, but it has pseudolinear timecomplexity.

    • @JmanNo42
      @JmanNo42 3 роки тому

      You probably should check that with Stefan Cronholm LiU IDA

    • @Brainstorm4300
      @Brainstorm4300 3 роки тому +5

      A university professor making simple concepts unnecessarily convoluted? Hmm why am I not surprised 😂

  • @MegaRad666
    @MegaRad666 3 роки тому +111

    Show the damn equations. Your words are wasted
    x^d mod(n)=y, y^e mod(n)=x
    p1 * p2 = n
    7 * 13 = 91
    6 * 12 = 72
    d * e mod(72) = 1
    d = 5, e = 29
    18^5 mod(91)=44, 44^29 mod(91)=18

    • @An.Individual
      @An.Individual 3 роки тому +8

      you've got your variables mixed up e.g. d=29, e=5

    • @MegaRad666
      @MegaRad666 3 роки тому +1

      @@An.Individual it doesn't matter which order, the whole point is that it's reversible

    • @An.Individual
      @An.Individual 3 роки тому +8

      @@MegaRad666 it could matter because the public key is n and e. if you supply d then e can be calculated

    • @MegaRad666
      @MegaRad666 3 роки тому +8

      @@An.Individual ah. you're absolutely right then. my bad

    • @rashidisw
      @rashidisw 3 роки тому +2

      Other tidbit that the video didn't properly explain is: x and y must be less than n, otherwise the reversibility ain't happening due to the nature of the mod operation.
      I believe that why he choose to use clock analogy to make you to not think about number for x (or y) that is equal or greater than n. 6:06

  • @johnagapi5970
    @johnagapi5970 3 роки тому +14

    The videos you are presenting are rare. Thank you

  • @QuantumHistorian
    @QuantumHistorian 3 роки тому +30

    You've got to write the equations down. No one can do more than a couple of lines of maths in their hand. Going through an example with small numbers is nice, but you have to show the actual formulas at the some point, not just say them.

  • @kahnfatman
    @kahnfatman 8 місяців тому

    It is CRAZY! I'm reading about group theory. That modulo clock and binary operations of members of that set constitutes a group! How cool!

  • @DaKidReturns
    @DaKidReturns 3 роки тому +3

    Finally.... He is back

  • @QYong-rq6iw
    @QYong-rq6iw 3 роки тому +5

    "deduce that m to the power of ed minus 1 simplifies to one on our clock, now because we have this minus one we have one little m leftover so what we end up with is one times m, which is m, which is how it cancels out in the end. :)"
    ???? what?? waht?? wahht???

  • @Uerdue
    @Uerdue 3 роки тому +2

    Fun fact: Choosing modulus n = 5*7 = 35 and encryption e = 13 gives extra security! Try it out!

  • @freshavocadew
    @freshavocadew 3 роки тому +29

    4:43 say no more

    • @Twisted_Code
      @Twisted_Code 3 роки тому +1

      the devil is in the details. Trapdoor functions are fun, but the beauty to me is in how they work and how they can be

  • @rogersantosprojects
    @rogersantosprojects Рік тому

    Legend says someone is trying to find the two prime factors since the release of this video to this day

  • @KipIngram
    @KipIngram 7 місяців тому

    I like your guitars! I've got a couple over in the corner of my family room. I hope you play yours more than I play mine. 🙂

  • @НазарБулавко
    @НазарБулавко 3 роки тому +10

    Please, add visual representations and timecodes. Timecode simplify the navigation through parts of video.

  • @rg3412
    @rg3412 3 роки тому +8

    I can’t believe people who get interviewed still don’t get they need a proper microphone.

  • @saddygamer1584
    @saddygamer1584 3 роки тому +19

    Bruh I watched all the RSA videos rn for my project and shocked to see another one.

  • @EmaMazzi76
    @EmaMazzi76 3 роки тому +4

    Other than breaking RSA cryptography (which I suspect would upset a lot of people and Institutions) what possible applications could arise from any advancing in factorization technics

  • @a_demain
    @a_demain 3 роки тому +4

    Not sure who this Bruh person popular in the commentary is :-) All I can say, is that you gave a well paced, excellent informative video. Do keep it up.

  • @ebadulislam123
    @ebadulislam123 7 місяців тому +1

    Nice video of Jim Carrey explaining RSA.

  • @Antuan2911
    @Antuan2911 3 роки тому +8

    Can't watch it, very bad sound!...

  • @ExtraterrestrialIntelligence
    @ExtraterrestrialIntelligence 3 роки тому +1

    Extrauniversal artificial superintelligence can easily break those algorithms. I need lattice based post quantum algorithms

  • @jeremyahagan
    @jeremyahagan 3 роки тому +1

    There is something very strange with the numbers Tim chose for thise example. The encryption with the public or private key encrypts to the same cipheretext, which is not how asymmetric encryption is supposed to work. You can actually reverse the encryption using 91.

  • @RubsNL
    @RubsNL 3 роки тому +8

    I bet there's an algorithm that could clean up this audio

  • @torixkaynes3652
    @torixkaynes3652 3 роки тому +6

    Hi Computerphile!

  • @stillmybleedingheart
    @stillmybleedingheart 3 роки тому +1

    Thanks for the great explanation, I finally feel like I understand RSA!

  • @SakshiSingh-rr1dm
    @SakshiSingh-rr1dm 3 роки тому +1

    Samwell Tarly: You know nothing "Very hard to follow without visual representation".

  • @bariswheel
    @bariswheel 3 роки тому +2

    Should have used a whiteboard to show the calculations instead of his face, would have been more helpful

  • @shodan658
    @shodan658 3 роки тому +5

    Very nice video; I understood everything except the last part. What did Dr Muller mean when he said M^((ED)-1) simplifies to 1 and then one little M left over? I did not understand the last part about the little M. I guess I have to research Farrat's theorem tomorrow.

  • @Orexll
    @Orexll 3 роки тому +1

    Please remake this video with visual explanations

  • @DarkShroom
    @DarkShroom 2 роки тому

    ouch i feel this is the best video but with no whiteboard i am lost.... i'm sure the equations are vivid in his mind... i didn't know that RSA was based on a novel method like this though, thanks

  • @juanjose6091
    @juanjose6091 3 роки тому +7

    Hi, everyone. I'm about to start my computer science engineering and I want to be well prepared for it. I have two doubts that i would like to get an answer for.
    1 is abstract algebra and number theory important in CS?
    2 How much of these subjects should I study?
    Thank you :)

    • @Lanr1s
      @Lanr1s 3 роки тому +2

      read and study as much computer stuff as possible. that includes math, physics, electronics, history and you will be more than fine

    • @SwissSareth
      @SwissSareth 3 роки тому +6

      Depends on what "start my engineering" means.
      In general: no, it's not important UNLESS you go into something computationally-heavy. And there are tons of fields like that. Security, machine learning, visual computation, theoretical computer science...
      So if you start at a university, you will learn a fair bit at the start of your studies just in case you will need it later.
      But once you get past that, you are free to go into a direction where you're perfectly fine without.
      It doesn't hurt if you still know a bit, though.
      *Disclaimer: or at least you were at the university I went to.

    • @SwissSareth
      @SwissSareth 3 роки тому +5

      So "how much should you study"?
      AS MUCH AS YOU CAN STAND.
      Because I'll be honest, there were moments at the beginning of my studies that would have been SO much easier if I had just known a bit more maths.
      But I thought maths was too boring and didn't do that preparation myself, of course. :P

    • @MilosMilosavljevic1
      @MilosMilosavljevic1 3 роки тому +1

      It is paramount. Study as much as you can.

    • @Caspitein
      @Caspitein 3 роки тому +4

      I also study Computer Science & Engineering, and this could of course differ for your study, but neither is really that important in my opinion. Probability, linear algebra and set theory were of much more use to me. Just my experience though :)

  • @MarcRidders
    @MarcRidders 3 роки тому

    I think the challenge can not be solved with the given premisses. The modulus to factorize in two 300 digit primes is 617 digits long and when I square the largest number with 300 (decimal) digits (all nines) this results in a product which is only 600 digits long.

  • @Twisted_Code
    @Twisted_Code 3 роки тому +3

    6:30 and 7:00 where do the exponents 5 and 29 come from?
    9:30 okay I see how someone with both the prime numbers can get the decryption key (29) now, but don't they need both prime numbers to get mod 72 (the 72 hour clock) and therefore determine that 5 is co-prime to this? I'm still a bit confused. Maybe I should keep watching...
    wait, I think I get it! Is the first number "e" (in this case 5) just "handed out" as part of the public key so that people can encrypt data? oh that is brilliant... so basically, everyone knows e, but only someone that knows the factors of the modulus, or m which is derived from it, can decrypt blocks of data encrypted with e! that's beautiful!

    • @deus_ex_machina_
      @deus_ex_machina_ 2 роки тому +1

      Pretty neat that you noted down your thought process, it might help others understand it better.

  • @mushroomcrepes
    @mushroomcrepes 2 роки тому +1

    even my $15 headset from 2010 had decent audio quality wtf is this

  • @antonios4553
    @antonios4553 3 роки тому +2

    I wish I knew what I am going to do with this foreign, foreign knowledge ............... yet I force myself to ponder through it all ....... on a 'Friday night'.

  • @napukapu
    @napukapu Рік тому +1

    Not gonna lie, I can't follow through with the explanation past 8:45.

  • @MrPlausibleDenial
    @MrPlausibleDenial 3 роки тому +2

    I'm sure there is a rainbow table of sorts that that contains the product of a significant amount of prime numbers. Why couldn't a lookup of this table be used to find the prime factors? Sure the numbers of entries would be absolutely massive, but computers are fast at these types of tasks.

    • @esquilax5563
      @esquilax5563 3 роки тому +4

      Well, there are about 10^300 300-digit numbers, and only about 10^80 particles in the observable universe. You go ahead and create that lookup table, but when you invent some fancy new physics to create enough matter on which to store it, be sure to share it with the rest of us!

    • @polpotube
      @polpotube 2 роки тому

      @@esquilax5563 how is the key created in the first place then? Oh wait, is this why creating it takes a very long time? Is the computer actually trying to find two 300 digit prime numbers without resorting to a dictionary?

    • @esquilax5563
      @esquilax5563 2 роки тому +2

      @@polpotube it is trying to do that, but it doesn't actually take very long, because it uses probabilistic primality tests which are fast to execute. The process can give numbers which are expected to be prime, to within any desired threshold of probability, but doesn't actually guarantee it. I'll try to post a link in my next reply, but apparently UA-cam sometimes deletes comments with links, so you might have to Google it

    • @polpotube
      @polpotube 2 роки тому

      @@esquilax5563 by "very long" I meant like 5 to 15 minutes

    • @esquilax5563
      @esquilax5563 2 роки тому

      @@polpotube it's more on the order of milliseconds. Maybe hundreds of milliseconds, but def less than a second

  • @Locke99GS
    @Locke99GS 3 роки тому

    Davie504 would be proud of this guy.

  • @FusionDeveloper
    @FusionDeveloper 3 роки тому

    If instead, the 2 prime numbers were simply added together, I think it would be easy to decrypt, because there would always only be 1 answer.

  • @jjoster
    @jjoster 2 роки тому

    What font do you use?

  • @arnabc8830
    @arnabc8830 3 роки тому

    tell something about your strats

  • @chlordk
    @chlordk 3 роки тому +4

    Thanks to Edward Snowden my favorite number is 2²⁵⁵-19

  • @robertkelleher1850
    @robertkelleher1850 3 роки тому

    Few visuals, and the audio is terrible. Feels like Computerphile sort of phoned this one in.

  • @landsgevaer
    @landsgevaer 3 роки тому

    "it is easy for a computer to determine whether any number is prime, but not what its factors are". I knew that it is easy to check that a number is a strong candidate to be prime, or for some special types of numbers, but is it easy to check definitively for all numbers? Any videos on that already?

    • @MrFair
      @MrFair 3 роки тому

      There are several (quite complex) algorithms to check the primality of a number. One of the most famous ones is Miller-Rabin. However, most of them (like Miller-Rabin) are "just" probabilistic. However, some years ago a few handful brilliant researchers also found a polynomial time algorithm (AKS primality test) for this problem (that unfortunately is still too slow for real life applications).

    • @landsgevaer
      @landsgevaer 3 роки тому

      @@MrFair Hmm, thanks! However, just checking whether numbers up to sqrt(n) are a divisor is polynomial time already. Would not call that "easy", as said in the video. Or do you mean it is polynomial in the number of digits, hence O(log(n))?
      I was aware of heuristics that mostly get it right, but that too is not making it "easy", in my view.
      I guess that was a bit of an overstatement then.

    • @MrFair
      @MrFair 3 роки тому +1

      @@landsgevaer Polynomial in the number of digits! :) And I definitely agree that it is not an easy problem and that this is an overstatement. You could see it from the viewpoint that there are fast algorithms, so it is easy in a way for a computer. But these algorithms are definitely not easy ;)

  • @VectorNodes
    @VectorNodes 3 роки тому +4

    "here are the secret plans": deathstar

  • @Pinefenario
    @Pinefenario 2 роки тому

    Interesting, but I honestly don’t understand how this relates to the Diffie-Hellman key exchange.

  • @williamgallop9425
    @williamgallop9425 3 роки тому

    I had a problem. A calculator problem. With 70's calculator one could write text like 0.553 for Esso or 77345 for Shell. In finnish 'to Esso' is "essolle" or 3ll0553. What are the primes of it? So i wrote a script with Commodore 64 to find out. So the calculator story goes like this:
    "Two countries had a battle for an oil field. One had 1231 and other 1021 troops. They fight 3 days. To whom did the oil field belong?
    .
    .
    .
    1231*1021*3=
    3770553
    Aka Essolle, " to Esso".

  • @UralaTAO
    @UralaTAO 3 роки тому +1

    Thanks for the information. It's a tough one though for most. people.

  • @ZipLineAttack
    @ZipLineAttack 3 роки тому +10

    The audio is quite bad. A simple lapel mic or desktop mic would have worked much better than a laptop built-in mic. As a last resort, a pair of earbuds with an attached mic is ok. This audio is not ok.

  • @guilhermepanarellirangel6663
    @guilhermepanarellirangel6663 2 місяці тому

    Seams weak to brute force....why this work as prime number?

  • @FusionDeveloper
    @FusionDeveloper 3 роки тому

    a 600 digit randomly generated number, for visual purposes:
    578888365663129492622608820118234364768663492993020406242022204476455824501802400932005342018698823339755181753664847201258392525761787865258634675248461394617611462098708361595646435400849504223730513648140094912587866359723807923191933166152318301534387812301653872562211060525739823648550632623636259744908085553684356155140779847578905695304250510474417656240606324720101213153461730988167222900973506877228946434680756251047331429593835840837979230616351286499565501355687066154968673457716510685042783324038125423282320515383004734120670621283061979664403602629265317569104102727515884734043435

  • @Nyawful
    @Nyawful 3 роки тому +8

    Where’s Mike Pound?

  • @ayushchoubey9996
    @ayushchoubey9996 Рік тому

    diffie hellman explanation was way more understandable and clear

  • @asifsaad5827
    @asifsaad5827 Рік тому

    use a visualisation rather than just saying out loud all the mathematical equations.

  • @georgionic
    @georgionic 3 роки тому

    I hope that offer will stand because I will be factoring it the moment I get access to a quantum computer that’s powerful enough

  • @Ramon314
    @Ramon314 2 роки тому

    4:08 I wonder why the exponent is 2^16 + 1, can anyone explain this? I guess it's not just randomly chosen.

    • @supernovaw39
      @supernovaw39 Рік тому

      I think Mike Pound talked about this in a different video. Has to do with the ease of using the square-multiply algorithm, since in binary it's 10000000000000001

  • @ineshi
    @ineshi 3 роки тому

    wa GL4?

  • @shavongolbourne7987
    @shavongolbourne7987 3 роки тому

    Challenge accepted at 4:43

  • @robin196
    @robin196 3 роки тому +1

    Can all you Genius uses atleast a whiteboard and no just use youtube for views

  • @user-qf6yt3id3w
    @user-qf6yt3id3w 3 роки тому

    This is a really good explanation.

  • @chadsexinton
    @chadsexinton 2 роки тому

    I can't process all of this.

  • @albertroswell
    @albertroswell 3 роки тому +1

    hard to follow if you dont show the formula, terrible explanation video, I understand the person knows a lot, but maybe he was confident those formulas will be shown on edition

  • @peterfranz286
    @peterfranz286 3 роки тому +1

    Didnt get this at all lol

  • @jackbauer322
    @jackbauer322 3 роки тому +13

    Not very clear explanation, i didn't understand a thing ...

  • @zyghom
    @zyghom 3 роки тому +6

    you lost me at aroud 2:30 ;-)

  • @MichaelSmith-jq9br
    @MichaelSmith-jq9br 3 роки тому

    just have a j then it's easy to follow

  • @Henrix1998
    @Henrix1998 3 роки тому +11

    This was quite bad explanation. I couldnt follow basically any of it besides the single steps alone

  • @Lorkin32
    @Lorkin32 3 роки тому

    what?

  • @jamesdavis2027
    @jamesdavis2027 3 роки тому +6

    The clock metaphor for remainder division/modulo is more confusing then helpful imo

  • @Jkauppa
    @Jkauppa 3 роки тому

    stupidly parallelizable

    • @Jkauppa
      @Jkauppa 3 роки тому

      pump up the size of the super computers

    • @Jkauppa
      @Jkauppa 3 роки тому

      all smoke and mirrors, eye tricks

  • @SatisfyingWhirlpools
    @SatisfyingWhirlpools 3 роки тому

    Why is there something rather than nothing? 🤔
    1. Is nothing a thing?
    2. No, nothing is not a thing.
    3. If nothing is not a thing, that means it can’t exist.
    4. If nothing can’t exist, that means that everything can.
    🤯🤯🤯🤯🤯🤯

  • @An.Individual
    @An.Individual 3 роки тому +2

    Rivest, Shamir, Adleman patented the algorithm, they did not invent it i.e. were not first to discover it.

    • @deus_ex_machina_
      @deus_ex_machina_ 2 роки тому +2

      You can't just leave a comment like that without also naming who actually discovered it. Unless it's unknowable?

  • @ultrasom
    @ultrasom 3 роки тому +8

    And here I was thinking I had a terrible mic. Had to legit stop watching after 30s, shitty audio was too painful.

  • @cdkx655
    @cdkx655 3 роки тому +6

    Oof, make a powerpoint or something

  • @PranayZVlogs
    @PranayZVlogs 3 роки тому

    69696969.... that's the number

    • @fokkenhotz1
      @fokkenhotz1 3 роки тому

      thats= only 60 where's the nine???

    • @PranayZVlogs
      @PranayZVlogs 3 роки тому

      @@fokkenhotz1 this video is fake the real answer i have commented 😆🤟

  • @BoleDaPole
    @BoleDaPole 28 днів тому

    Well achtually RSA didn't invent RSA 🤓☝️

  • @bm-ub6zc
    @bm-ub6zc 2 роки тому

    "Where does the number 29 comes from?" - I don't know, but I can tell you where the number 69 comes from.

  • @broyojo
    @broyojo 3 роки тому +2

    he sounded like a robot lol

  • @hosseinhamze5071
    @hosseinhamze5071 10 місяців тому

    awful

  • @luckydog7896
    @luckydog7896 3 роки тому

    nice

  • @WrongParadox
    @WrongParadox 3 роки тому +1

    the other guy needs a better microphone

  • @abdotv4935
    @abdotv4935 3 роки тому

    ث

  • @Infinity-js5vk
    @Infinity-js5vk 3 роки тому

    bruh