代码搜索:SubBytes
找到约 19 项符合「SubBytes」的源代码
代码结果 19
www.eeworm.com/read/429104/8819126
m subbytes.m
function out=Subbytes(state)
H=[1 0 0 0 1 1 1 1;1 1 0 0 0 1 1 1;1 1 1 0 0 0 1 1;1 1 1 1 0 0 0 1;...
1 1 1 1 1 0 0 0;0 1 1 1 1 1 0 0;0 0 1 1 1 1 1 0;0 0 0 1 1 1 1 1];
p=[1 1 0 0 0 1 1 0]';
for i
www.eeworm.com/read/337486/12365946
v subbytes.v
module SubBytes(clk, clk_enable, data_in, data_out);
parameter AES_length = 128;
input clk, clk_enable;
input [AES_length-1:0] data_in;
output [AES_length-1:0] data_out;
wire [7:0] in15,
www.eeworm.com/read/229983/14309724
vhd subbytes.vhd
-------------------------------------------------------------------------------
-- Title : A compact 8bit AES encryption core
-------------------------------------------------------------------
www.eeworm.com/read/272859/4214727
v subbytes.v
//////////////////////////////////////////////////////////////////////
//// ////
//// Subbytes module implementation
www.eeworm.com/read/272859/4214739
v subbytes.v
//////////////////////////////////////////////////////////////////////
//// ////
//// Subbytes module implementation
www.eeworm.com/read/272859/4214754
h subbytes.h
//////////////////////////////////////////////////////////////////////
//// ////
//// AES subbytes module header
www.eeworm.com/read/272859/4214760
cpp subbytes.cpp
//////////////////////////////////////////////////////////////////////
//// ////
//// AES subbytes module implementation
www.eeworm.com/read/272859/4214781
h subbytes.h
//////////////////////////////////////////////////////////////////////
//// ////
//// AES subbytes module header
www.eeworm.com/read/272859/4214787
cpp subbytes.cpp
//////////////////////////////////////////////////////////////////////
//// ////
//// AES subbytes module implementation
www.eeworm.com/read/337486/12365968
v inv_subbytes.v
module Inv_SubBytes(clk, clk_enable, data_in, data_out);
parameter AES_length = 128;
input clk, clk_enable;
input [AES_length-1:0] data_in;
output [AES_length-1:0] data_out;
wire [7:0] i