Slashdot Mirror


U. Washington Crypto Course Now Online for Free

Alien54 writes "Who wants to pay for Stanford's Crypto Course, when University of Washington has made the whole Cryptography Course available online for free. Yes, all the presentations, videos (mp3, WMV), homework, quizzes etc. are available online. The material seems pretty decent, and is intended for an advanced audience." Found on linkfilter.

9 of 173 comments (clear)

  1. Also worth visiting... by Sheetrock · · Score: 5, Informative

    The MIT OpenCourseWare site has a sizeable amount of free learning materials. I had it bookmarked a while back when they weren't offering that much but they've since put a lot online.

    --

    Try not. Do or do not, there is no try.
    -- Dr. Spock, stardate 2822-3.




  2. Thanks by backslashdot · · Score: 3, Informative

    Yeah and it was on college's website before that too.

    Why don't i just visit all the websites on the internet every day? Then i wouldnt have to bother with the inconvenience of browsing slashdot.

    As for having the same writeup? The bottom of the text credits linkfilter .. duh.

  3. Re:What about certifications? by kfg · · Score: 2, Informative

    No.

    KFG

  4. What Crypto Course? by jackb_guppy · · Score: 2, Informative

    Did they reaad the material before posting this article??

    Some math questions involving a MOD and the final homework... How much bandwidth is VeiSign using.

    Where is the questions about breaking the code?

    1. Re:What Crypto Course? by Anonymous Coward · · Score: 1, Informative

      I think he's talking about the Stanford link which is a 'certificate' course and, after a cursory glance, does not appear to have any mathematical foundation.

      In contrast, the U.Wash. course does seem to be for a degree program, actually studying the mathematics of cryptography.

      Why these two were compared is a mystery.

  5. Winter '02 course is also available on-line by bal · · Score: 5, Informative

    Winter '06 was actually our second crypto class for UW PMP; lectures and materials from when Josh Benaloh and I taught crypto in Winter '02 are also available on-line. The material covered in the two courses is similar (we added material on cryptanalysis in '06 and updated the existing material). If you're working through the course at home you might find it helpful to work through the '02 assignments as well.

  6. Independant Cryptography Learning by tetrisaddict · · Score: 2, Informative

    On a related note I've recently noticed this post about getting into the theory of cryptography. I don't know anything about the author nor the topic so I cannot verify is the advice is good, but it sounds reasonable.
    T

  7. Related: Networks course at CMU by angio · · Score: 4, Informative

    Since people seem to be interested in this, you might also take a peek at
    the CMU computer networks course, which I put online almost entirely (lecture nodes, video, homeworks, and the programming projects). Click on "Syllabus" to get to the contentful-bits. Feedback is welcome: Srini and I hope that leaving it online will be useful for students and instructors everywhere.

  8. Re:Study cryptography! by MK_CSGuy · · Score: 2, Informative

    Still one way hash - the "server" calculates the hash and stores it,
    and when it receives the password from the "client" (if it is a real client-server-over-network scenario then obviously you should transfer the password safely, uing SSH for example) it calculates its hash and compares it with the stored hash. If it's a match - bingo.
    Because it is much more problematic to get the password from its calculated hash, it is safer to store the hash and not the password.
    In its most basic form you can still attack it (Rainbow tables) but you can defend against it with salting.

    Hey, just found through that wikipedia article about salting this article about Storing Passwords - done right. Haven't read it myself really, but from skimming I can see that it implements a salted hash mechanism in C# & ASP. Maybe it could prove useful to you or others.