Added: 4 years ago
From: GoogleTechTalks
Views: 52,921
Sort by time | Sort by thread (beta)

Link to this comment:

Share to:
see all

All Comments (57)

Sign In or Sign Up now to post a comment!
  • how to get rest parts of lecturers?

  • dude...i know, i know...

    srsly, nice talk though

  • Course materials: saweis.net/pdfs/CryptoL1.pdf

  • dunno who copied off who (or perhaps the order of content is quite familiar) but that's almost EXACTLY the same an in order of what a lecture of steganography. I can't link but just search "Lecture 32: Steganography" in youtube

  • The slide where he mentions the code I see evict is there more?

  • Thank you so much for this awesome lecture!! One of the very few informative cryptography videos I could find; loved the combination of history and cryptography.

  • Very interesting video Steve. You can also watch videos of the on-line free educational project intypedia, the Information Security Enciclopedia. Just search in Google for intypedia.

    Best regards,

    The intypedia Team

  • this video is good but

    i think you should involve more technical and advance level of cryptography then history.....

    we are not here to attain history classes.

  • @mandawra08 There are three other lectures in the series that get into more details.

  • comments should be disabled as most of the people who happen upon this vid are unlikely to understand or care to understand its contents, resorting to senseless blurbs mirroring their frustration

  • Comment removed

  • "Sta[s]tistical"?

  • I think I've managed to decypher the way this man talks- He just uses a load of redundant 'G' sounds and he simply substitutes many of his 'Ts' for 'Gs'-:-

    00:30 "thanks for legging me know, I'm the director of google universigy and I'd like welcome you to wong of the first...

    agmingistragive = administrative. I think.

  • He's nervous so stfu

  • er... no. It's a speech impediment.

  • Even if he has a speech impediment, Doesn't make gnamp any less of a ass

  • I'm not the one picking on people

  • Considering the content of the video it is not so much out of the norm considering this is a very interesting topic I certainly frown upon your comment it is neither constructive , productive or even relevant it is just some low brow remark makes me question your age keep it on point this video is to do with the content not the manner in which is was presented.

  • Thank you for proving my point Gnamp

  • Agreed

  • Had a good beat, one can dance to it....

  • Very interesting stuff! I was inspired to watch this as I am reading Digital Fortress by Dan Brown.

  • a lovely book! i really enjoyed it.

  • can someone break this down for me?.. what exactly are they talking about?

  • Cryptography.

  • Fun stuff! WW2 cryptography, esp. is fun stuff to learn about. I believe "the bombe" was the mechanical device used to crack "the Enigma". Also, it's interesting to learn about "JN-25",particularly, because it was decoded using only pen and paper. The Enigma, on the other hand, utilized an electro-mechanical device. Anyway, I really enjoy listening to the wide variety of lectures provided by Google. Keep up the great work!

  • Great lecture. I read a few thing about cryptography and this lecture mentions many of them, in a very easy to understand way.

    Thanks for posting.

    Btw could someone tell me wich universities have worth-doing post-studies programmes on cryptography?

  • when will gmail inherently support SMIME (not through 3rd party apps)?

  • I don't think S/MIME is well suited for web-based clients. You generally don't want your private keys to live on a remote server, so would want to store them locally.

    Regardless, it is possible to support S/MIME in a web-based client with JavaScript and something like Google Gears for key storage. But, I think you'd be better off just using a S/MIME compatible email client with Gmail IMAP/POP access.

  • Hey, you work at Google...

    How about publishing your slides on Google docs?

    I see you are already using it...

    Great Tech Talks btw.

  • Hi. I plan to post the slides soon. They are internal-only Google Docs for now. I will export them all to my personal web page when I get a chance.

  • Thanks for posting it. I hope to see more to come. Next week I will have presentation about Applied Cryptography by Bruce Scheier.

  • Stephen -- in future lectures, please repeat audience questions before answering them so those of us not present can know what was asked.

  • apologies... just got to the end of the lecture where it was brought up.

  • Hi everyone. I am the lecturer in the video. Thanks for watching. I plan to post all the materials from this course on the web when I get a chance. Keep an eye out for a link that I'll post here.

  • @StephenWeis Thanks for this lecture :) I'm only 15 but I am learning about cryptography, this was very helpful. I like the maths side of it surprisingly enough :) Good job.

  • @PH5221 You might be interested in Dan Boneh's free Stanford crypto class online at crypto-class . org

  • @StephenWeis Thanks man :) Appreciate it.

  • I see a HUGE problem with Diffie-Hellman. Suppose someone on the the channel, say Eve is eavesdropping (sincerely, I didn't intend to be punny), and they have G, g, g^x and g^y. Given this information, how hard is it to figure out x & y? And with some brute-force cracking, it should be easy to find g^xy.

    Am I the only one that sees this, or am I making a mistake?

  • The problem is that calculating x (or y) from  g^x (or g^y) is "thought" to be very hard (what is known as the Computational Diffie-Hellman problem or the discrete log problem). Also these groups are usually very large which makes brute-force unfeasible.

  • Yes, that is very hard, I agree. But that doesn't seem to be the problem here. An eavesdropper has G, g, g^x & g^y, right? Or is that where I'm making the mistake? If you have g, g^x & g^y, calculating x & y should be trivial, right?

    Of course, if you didn't have g, it would be an excellent method, since, as you say, figuring out x & y from g^x & g^y would be really difficult.

  • Not really since you would have to calculate the x^th (and y^th) root of g which in the case of using groups (and modular arithmetic) is highly non-trivial, and there isn't a method of manipulating g^x and g^y to give g^(x*y). There is a good book on "modern" crypto called "Introduction to Modern Cryptography" by Jonathan Katz and Yehuda Lindell which goes into great detail proving that Diffie-Hellman is secure against an eavesdropper.

  • I'll definitely check out the book. Thanks for your time!

  • Hi. First off, thanks for your interest in the lecture.

    One thing to note is that we're talking about operations in what are formally known as "multiplicative groups". If we were taking logarithms over all integers, then you're right -- it would be very easy and you could do it on a pocket calculator.

    A common multiplicative group that is used in practice are numbers modulo a large prime, denoted Z_p. If p=7, g=3, and x=2, then: g^x = 3^2 mod 7 = 9 mod 7 = 2 mod 7

  • (Continued) Asking what the base-3 logarithm of 2 is in Z_p is asking "What value of x do I raise 3 to such that the remainder after dividing by 7 is 2?"

    In this example, it's trivial for us to figure out that x=2 by trying all possible values. But if p is very large, it becomes more difficult.

  • Oh, I see. The larger the prime, the harder it is to brute-force the algorithm. Thanks very much for the clarification.

  • Very interesting talk.

    Thanks for putting it up.

Loading...
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more