USC CSD Home
 

Applied Cryptography - CSCI 531, Spring 2017

 
General Information
Time   :   MW 9:30am - 10:50am
Location : OHE 100D
Instructor   :   Bill Cheng (for office hours, please see instructor's web page), E-mail: <bill.cheng@usc.edu>.   (Please do not send HTML-only e-mails. They will not be read.)
TA   :   Chien-Lun Chen, E-mail: <chienlun@usc.edu>, Office Hours: Fri 3:10pm - 5:10pm in PHE 320
Grader   :   Amin Amiripour, E-mail: <amiripou@usc.edu>(The grader will hold office hours the week after the announcement of each assignment's grades.)
Midterm Exam   :   during class, Mon, 3/6/2017 (firm)
Final Exam   :   8am-10am, Fri, 5/5/2017 (firm)
 
Class Resources
Description   :   textbooks, topics covered, grading policies, additional resources, etc.
Papers   :   required and optional technical papers
Lectures   :   slides from lectures in HTML and PDF formats
Videos   :   information about DEN lectures and discussion sections videos.
Discussions   :   information about discussion sections.
Homeworks   :   programming assignments (please also see important information about programming assignments at the bottom of this page.)
Participation   :   rules about roll calls.
Newsgroup   :   Google Group for discussing course materials and programming assignments. You are required to be a member of this group. (This group is by invitation only.) Please do not send request to join this group until after the first lecture.
 
News
(in reversed chronological order)
  • 4/26/2017: The final exam will be closed book, closed notes, and closed everything, except for a single (letter-sized) "crib sheet / cheat sheet". You can write or print whatever you want on it on both sides of the cheat sheet. Magnifying glasses are not allowed, so don't print too small! You will be required to turn in the cheat sheet together with the exam paper.

    Also, no calculators, cell phones, or any electronic gadgets are allowed. Please bring a photo ID. Your ID will be collected at the beginning of the exam and will be returned to you when you turn in your exam. There will be assigned seating. Please do not bring your own scratch paper! All work must be done on the exam itself (you can use the back sides of exam pages).

    The final exam will cover everything from math background for AES (slide 4 of Lecture 12 on 2/15/2017) to slide 27 of Lecture 30 on 4/26/2017. Here is a quick summary of the topics (not all topics covered are listed):

    • Block Ciphers
      • AES
        • math for Rijndael
          • xtime()
          • multiplication in GF(28)
          • multiplicative inverse in GF(28)
            • extended Euclidean algorithm
            • table method
          • multiplication of polynomials with coefficients in GF(28)
        • components and structure of Rijndael
          • SubBytes() and InvSubBytes()
          • ShiftRows() and InvShiftRows()
          • MixColumns() and InvMixColumns()
          • AddRoundKey()
          • key expansion
        • equivalent inverse cipher
        • security of Rijndael
    • Generating Primes
      • math background
        • quadratic residue
        • square root
        • Legendre and Jacobi symbols
        • pseudosquares
        • Blum integers
        • integer factorization
        • primality proving algorithms
          • using the factorization of n-1
          • Pocklington's theorem
      • probabilistic primality tests
        • Fermat's test
        • Carmichael number
        • Solovey-Strassen test
        • Miller-Rabin test
      • generating probable primes
        • RANDOM-SEARCH(k,t)
      • generating provable primes
        • Maurer's algorithm
    • Public-key Encryption
      • background
        • extended Euclidean algorithm
        • modular exponentiation algorithm
        • Chinese remainder theorem
        • residue number system
        • Garner's algorithm
      • RSA
        • the RSA problem
        • key generation
        • security of RSA
          • small exponent problem
          • forward search attack
          • multiplicative properties
          • common modulus attack
          • cycling attack
          • message concealing
      • Diffie-Hellman
        • the Diffie-Hellman problem
      • ElGamal
        • key generation
        • encryption/decryption
        • randomized encryption
      • Rabin
        • key generation
        • encryption/decryption
        • finding square roots
    • Pseudorandom Bit Generators
      • linear congruential generator
      • polynomial-time statistical tests
        • statistics background
          • normal distribution
          • chi-square distribution
        • five basic tests
          • frequency (mono-bit) test
          • serial (two-bit) test
          • poker test
          • runs test
          • autocorrelation test
      • cryptographically secure PRBG
        • RSA pseudorandom bit generator
        • Blum-Blum-Shub pseudorandom bit generator
    • Stream Ciphers
      • synchronous vs. self-synchronizing stream ciphers
      • LFSR
        • connection polynomial
        • linear complexity
        • Berlekamp-Massey algorithm
      • Non-linear FSR
        • de Bruijn FSR
      • Stream ciphers based on LFSRs
        • Geffe generator
        • correlation attacks and correlation immunity
        • summation generator
        • non-linear filter generator and knapsack generator
        • clock controlled generators
          • alternating step generator
          • shrinking generator
      • Stream ciphers not based on LFSRs
        • RC4 (FMS attack excluded)
        • SEAL
    • Hash Functions
      • keyed hash functions
        • MACs
      • unkeyed hash functions
        • MDCs
          • OWHF
          • CRHF
      • hash function properties
        • compression
        • ease of computation
        • preimage resistance
        • 2nd-preimage resistance
        • collision resistance
      • computational resistance for MACs
      • Yuval's birthday attack
      • one-way functions
        • compression functions
        • DES-based one-way functions
        • other one-way functions
      • iterated hash functions
      • Merkle's meta-method for hashing
      • Merkle Damgard strengthening
      • padding
      • unkeyed hash functions
        • single-length and double-length MDCs
        • MD5
        • MD5 & SHA-1 seriously broken
      • keyed hash functions
        • CBC-based MACs
        • HMAC
    • Digital Signatures
      • classification of digital signature schemes
        • digital signature schemes with appendix
        • digital signature schemes with message recovery
          • redundancy function
      • attack on digital signature schemes
      • digital signature schemes
        • RSA digital signature scheme
          • reblocking problem
        • ElGamal digital signature scheme
        • DSA
        • One-time digital signatures
          • Lamport
          • Rabin
          • Merkle
    • Introduction to Cryptographic Protocols
      • protocol and mechanism failures
      • key management via symmetric-key techniques
      • key management via public-key techniques
        • certificate and certificate authority
        • trusted third party
        • public-key infrastructure
    • week 7 discussion
      • review of finite field, multiplying & dividing polynomials, modular exponentiation
    • week 9 discussion (HW5)
      • AES
    • week 10 discussion
      • review of AES math
    • week 11 discussion (HW6)
      • trial division
      • Miller Rabin
      • random search
      • Maurer's algorithm
    • week 12 discussion
      • review of RSA, Chinese remainder theorem, Garner's algorithm
    • week 13 discussion (HW7)
      • RC4
      • frequency (mono-bit) test
      • serial (two-bit) test
      • poker test
      • runs test
      • autocorrelation test

  • 4/19/2017:
    • The office hour tomorrow (4/20/2017) is cut short and will only go from 12:30pm to 1pm because I have to leave campus at 1pm. Sorry about the inconvenience and short notice.


  • 3/5/2017:
    • The office hour this coming Tuesday (3/7/2017) is moved to 2:00-3:00pm because I have a committee meeting from 12:30pm to 2:00pm. Sorry about the inconvenience.

  • 2/22/2017: The midterm exam will be closed book, closed notes, and closed everything (and no "cheat sheet"). Also, no calculators, cell phones, or any electronic gadgets are allowed. Please bring a photo ID. Your ID will be collected at the beginning of the exam and will be returned to you when you turn in your exam. There will be assigned seating.

    The midterm exam will cover everything from the beginning of the semester till the end of DES (slide 3 of Lecture 12 on 2/15/2017) and including topics covered by the first 6 weeks of discussion sections.

    Here is a quick summary of the topics (not all topics covered are listed):

    • overview
      • functions
        • bi-jections and inverses
        • one-way functions and trapdoor one-way functions
        • permutations
      • encryption schemes
        • max number of permutations
        • model of communication and channels
      • types of adversaries
      • types of cryptanalysis
      • symmetric-key encryption
        • model of communication and channels
        • block ciphers
          • substitution ciphers
            • mono-alphabetic substitution cipher
            • homophonic substitution cipher
            • polyalphabetic substitution cipher
          • transposition ciphers
          • composition of ciphers and product ciphers
        • stream ciphers
          • Vernam ciphers and one-time pad
        • key space issues
      • digital signatures
        • signing and verification transformations
      • authentication and identification
        • entity vs. data origina authentication
      • public-key cryptography
        • necessity of authentication
        • digital signature from reversible public-key encryption
      • cryptographic hash functions
        • one-wayness
        • weak collision-resistance
        • strong collision-resistance
        • keyed vs. unkeyed hash functions
      • protocols and mechanisms
        • protocol failures
      • key management
        • symmetric-key and trusted third party
        • public-key and certificate authority
      • attacks
        • ciphertext-only
        • known-plaintext
        • chosen-plaintext
        • chosen-ciphertext
      • security models
        • unconditional security
        • complexity-theoretic security
        • provable security
        • computational security
        • ad hoc security
    • block ciphers
      • classical ciphers
        • simple transposition ciphers
        • mono-alphabetic substitution cipher
        • polygram substitution cipher
        • homophonic substitution cipher
        • cryptographic codes
        • polyalphabetic substitution cipher
          • Vigenere cipher and variants
          • Jefferson cylinders and rotors and the Enigma machine
      • cryptanalysis of classical ciphers
        • language statistics
      • block cipher analysis
        • True Random Cipher
        • complexity of attacks
        • birthday paradox
      • modes of operation
        • ECB
        • CBC
        • CFB
        • OFB
      • cascade cipher and multiple encryption
        • meet-in-the-middle attacks
        • known-plaintext unicity distance
        • attacks on multiple encryption
      • DES
        • product ciphers
        • Fiestel
        • DES algorithm
          • P
          • S
          • E
        • DES key scheduling
          • V
          • PC1
          • PC2
        • DES properties
        • DES weak and semi-weak keys
        • cryptanalysis of DES
    • week 1 discussion (HW1)
      • hexdump
      • base64 encoding/decoding
    • week 2 discussion
      • converting integers
      • bit flipping
      • modular arithmetic
      • Euclidean Algorithm
      • primes
    • week 3 discussion (HW2)
      • visual cryptography
    • week 4 discussion
      • Playfair cipher
      • Hill cipher
      • Beaufort cipher
      • auto-key Vigenere cipher
      • Jefferson cylinder
      • rotor-based machines
    • week 5 discussion (HW3)
      • full Vigenere cipher
      • cryptanalysis
        • method of Kasiski
        • index of coincidences (auto-correlation only)
    • week 6 discussion
      • extended Euclidean Algorithm
      • multiplicative inverse
      • Wilson's theorem

  • 2/14/2017:
    • The office hour today is moved to 1:30-2:30pm because I have a committee meeting from 12:30pm to 1:30pm. I don't know if the committee meeting will end on time. If I'm not at my office at 1:30pm, please just wait outside my office for a few minutes. Sorry about the inconvenience and the short notice.

  • 1/23/2017:
    • The office hour tomorrow (1/24/2017) is moved to 2:00-3:00pm because I have a committee meeting from 12:30pm to 2:00pm. Sorry about the inconvenience and the short notice.

  • 1/9/2017:
    • The office hour tomorrow (1/10/2017) is moved to 1:30-2:30pm because I have a committee meeting from 12:30pm to 1:30pm. I don't know if the committee meeting will end on time. If I'm not at my office at 1:30pm, please just wait outside my office for a few minutes. Sorry about the inconvenience and the short notice.

  • 1/8/2017:
    • Watch this area for important announcements.

    • To get user ID and password for accessing protected area of this web site, please visit the request access page after semester starts and submit the requested information. (You do not have to be registered for the course to get the password. You just need to have an USC e-mail address.)

    • I have replaced the number theory optional textbook because the previous one was getting expensive. You don't really have to buy any of the optional textbooks.

    • Please do not send request to join the class Google Group until after the first lecture.
 
Prerequisites
CS 102L (Data Structures) or graduate standing. It is assumed that you know how to write programs in C/C++, how to use data structures and algorithms so your program can run efficiently, and how to debug programs and make them work correctly.
 
Important Information about Programming Assignments
All homework assignments are programming assignments to be done in C/C++. No other programming language will be accepted and your program must compile and run with a Makefile on nunki.usc.edu. (Sorry, no Java.) You must be familiar with the Unix development environment (vi/pico/emacs, cc/gcc or g++/CC, make, etc.) If you are not familiar with Unix, please read Unix for the Beginning Mage, a tutorial written by Joe Topjian.

If a student signs up late for this class, he/she is still required to turn all projects and homeworks on time or he/she will receive a score of 0 for these assignments. No exceptions!

 

[Last updated Sat Sep 19 2020]    [Please see copyright regarding copying.]