matlab AES直接可用代码
csdn找了半天没有直接可以用的代码。这个压缩包解开放一个文件夹 可以直接用 。直接在command 里面输入[s_box, inv_s_box, w, poly_mat, inv_poly_mat] = aes_init; 2 plaintext_hex = {’00’ ’11’ ’22’ ’33’ ’44’ ’55’ ’66’ ’77’ ... 3 ’88’ ’99’ ’aa’ ’bb’ ’cc’ ’dd’ ’ee’ ’ff’}; 4 plaintext = hex2dec (plaintext_hex); 5 ciphertext = cipher (plaintext, w, s_box, poly_mat); 6 re_plaintext = inv_cipher (ciphertext, w, inv_s_box, inv_poly_mat); plaintext 明文 cipehertext密文 re_plaintext解密 key在 aes_init修改 实测可用
文件列表
Aes代码.rar
(预估有个19文件)
Aes代码
poly_mat_gen.asv
324B
rot_word.m
58B
find_inverse.m
166B
cycle.m
293B
cipher.m
578B
rcon_gen.m
176B
add_round_key.m
99B
shift_rows.m
81B
sub_bytes.m
82B
暂无评论