OpenCores
URL https://opencores.org/ocsvn/aes-128_pipelined_encryption/aes-128_pipelined_encryption/trunk

Subversion Repositories aes-128_pipelined_encryption

[/] [aes-128_pipelined_encryption/] [tags/] [R0/] [rtl/] [AddRoundKey.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 Amr_Salah
/*
2
Project        : AES
3
Standard doc.  : FIPS 197
4
Module name    : AddRoundKey block
5
Dependancy     :
6
Design doc.    :
7
References     :
8
Description    : This module is used for xoring data and round  key
9
Owner          : Amr Salah
10
*/
11
 
12
`timescale 1 ns/1 ps
13
 
14
module AddRoundKey
15
#
16
(
17
parameter DATA_W = 128            //data width
18
)
19
(
20
input clk,                        //system clock
21
input reset,                      //asynch active low reset
22
input data_valid_in,              //data valid signal
23
input key_valid_in,               //key valid signal  
24
input [DATA_W-1:0] data_in,       //input data
25
input [DATA_W-1:0] round_key,     //input round key
26
output reg valid_out,             //output valid signal
27
output reg [DATA_W-1:0] data_out  //output data
28
)
29
;
30
 
31
always@(posedge clk or negedge reset)
32
if(!reset)begin
33
    data_out <= 'b0;
34
    valid_out <= 1'b0;
35
end
36
else begin
37
    if(data_valid_in && key_valid_in) begin
38
    data_out <=  data_in ^ round_key;      //xoring data and round key       
39
    end
40
    valid_out <=  data_valid_in & key_valid_in;
41
end
42
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.