• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-02
  • 语言: Matlab
  • 标签: aes  matlab  CODE  OF  in  decrypt  

资源简介

AES encrypt and decrypt source code implemented using MATLAB

资源截图

代码片段和文件信息

function ct = aescrypt(ptkey)
% AESCRYPT - encrypt a message using 128-bit AES
%
% USAGE: ct = aescrypt(ptkey)
%
% pt  = plaintext a vector in char or uint8 form
% key = encryption key which must be a character string or uint8 vector
% ct  = cyphertext
%
% Notes: (1) This function requires Java which contains the encryption
%            routines.
%        (2) The provided key may have any (nonzero) length. It is hashed
%            to 128 bits using the MD5 hash algorithm.
%        (3) Use this function with the separate DZIP routine to enable
%            encryption of several Matlab data types e.g.
%            ct=aescrypt(dzip(M)key)
%        (4) Carefully tested but no warranty use at your own risk.
%        (5) Michael Kleder Nov 2005
%
% EXAMPLE:
%
% M=r

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-01-05 14:39  aes\
     文件        1572  2009-12-08 07:16  aes\aescrypt.asv
     文件        1572  2009-12-04 23:54  aes\aescrypt.m
     文件        1689  2005-11-04 16:00  aes\aesdecrypt.m
     文件          41  2010-01-04 01:10  aes\FN_DEscriptION.TXT
     文件         861  2010-01-04 01:08  aes\test_encrypt_decrypt.m

评论

共有 条评论