• 7. Python and Cryptography

    • Intro

      In this lesson you are going to:

      use more Python to hack some activities. You will learn about encryption, hash keys and passwords and use all of them to get secret keys.

    • Password Security

      To make sure your password is secure, there are lots of interesting steps algorithms go through. Let's see...

       

       
    • Cylab Python Hacking

      Let's go to Cylab Academy and complete 4 activities from Python in CTFs - Problem set 1 and 2.

      Python Examples

      These are just a few examples of what you need to remember about Python code.

      #an example of a list and a FOR loop in python
      aList = ["one", "two", "three", "four"]
      
      for item in alist:
          do something to the items in alist