文件名称:AES
介绍说明--下载内容均来自于网络,请自行研究使用
ES is a symmetric block cipher.
The same key is used to encrypt and decrypt the message.
The plain text and the cipher text are the same size.
The Aes algorithm works as follows:
Convert to state array: This step consists of conversion on the matrix onto a state array operating with the sbox.
Transformations (and their inverses)
AddRoundKey: Computing the round key for each round.
SubBytes: Substituting by bytes from Sbox.
ShiftRows: Shifting of rows.
MixColumns: Exor operation on columns.
Key Expansion: Expanding the key to be used on next round.
The same key is used to encrypt and decrypt the message.
The plain text and the cipher text are the same size.
The Aes algorithm works as follows:
Convert to state array: This step consists of conversion on the matrix onto a state array operating with the sbox.
Transformations (and their inverses)
AddRoundKey: Computing the round key for each round.
SubBytes: Substituting by bytes from Sbox.
ShiftRows: Shifting of rows.
MixColumns: Exor operation on columns.
Key Expansion: Expanding the key to be used on next round.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
AES\add_round_key.m
...\aes_demo.m
...\aes_init.m
...\aff_trans.m
...\cipher.m
...\cycle.m
...\disp_hex.m
...\find_inverse.m
...\inv_cipher.m
...\inv_shift_rows.m
...\key_expansion.m
...\mix_columns.m
...\poly_mat_gen.m
...\poly_mult.m
...\rcon_gen.m
...\rot_word.m
...\shift_rows.m
...\sub_bytes.m
...\s_box_gen.m
...\s_box_inversion.m
AES