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.
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.
Yeah and it was on college's website before that too.
.. duh.
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
No.
KFG
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?
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.
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
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.
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.