Advanced Encryption Standard (AES)-128,192, 256

版本 1.0.4 (4.6 KB) 作者: David Hill
Advance Encryption Standard-128, 192, or 256 encryption and decryption using 128/192/256-bit hexadecimal key and 128-bit hexadecimal input.
4.1K 次下载
更新时间 2021/1/25

查看许可证

AES-128/192/256 algorithm for creating a cipher given a 128-bit hexadecimal input message and 128/192/256-bit hexadecimal key. Created using FIBS-197 standard. Algorithm was not built for speed and does not covert a text message or data input 128-bit input blocks. Cipher and InvCipher are the main functions to execute. Function executes AES128 or AES192 or AES256 based on the key size. Functions do not check whether the key size or input are the correct length and will error if they are not the correct size.

Example:
Out = Cipher(key,In)
%key='000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f'
%In='00112233445566778899aabbccddeeff'
%Out='8ea2b7ca516745bfeafc49904b496089'

Out=InvCipher(key,In)
%key='000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f'
%In='8ea2b7ca516745bfeafc49904b496089'
%Out='00112233445566778899aabbccddeeff'

引用格式

David Hill (2024). Advanced Encryption Standard (AES)-128,192, 256 (https://www.mathworks.com/matlabcentral/fileexchange/73412-advanced-encryption-standard-aes-128-192-256), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2020a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Encryption / Cryptography 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.4

Corrected coding for new versions of MATLAB.

1.0.3

Added 128 and 192 bit key choices

1.0.2

Corrected error.

1.0.1

Upgraded and simplified code.

1.0.0