ECE 111 Project 2

Project Description

The goal of this project is to design the WEP Co-Processor, a HW block that speeds up the cryptographic computations in the MAC layer of the 802.11 Wireless LAN protocol.

1. Objectives:

  • Design 1: A design that is minimized for area.
  • Design 2: A design that is minimized for delay.
  • Report results as specified in Deliverables
  • 2. Specification:

    WEP implements a stream cipher symmetric key cryptographic algorithm (RC4) from RSA Data Security. Since RC4 is proprietary, for this project, our design of the WEP co-processor will use a public algorithm (known as ARCFOUR) instead of RC4 (a Google search on RC4 will tell you about how the RC4 code "leaked" onto the internet). To understand the algorithm that must be implemented, go over:
    This Verilog Module Interface (*****) contains the WEP Co-processor declaration and explanation of each port:

    3. Testbench:

    Use this testbench (*****) and plaintext.dat (*****) file used by the testbench to help verify your design. Note, it is imperative that your design passes the testbench, otherwise, Project 3 will turn into a nightmare. Feel free to modify the testbench to test your design more thoroughly. However, you will be graded only on the basis of the provided testbench.

    This is the timing diagram (*****) for reading and writing to the DPSRAM. It is a conservative timing model; however please use this in order to ensure correctness of the design (in the presence of, say, clock skew etc).

    Part A: Minimize Area

    Part B: Minimize Delay