GetMD5

버전 2.1.1 (23.5 KB) 작성자: Jan
Get MD5 of files or arrays as fast C-Mex
다운로드 수: 7.7K
업데이트 날짜: 2019/3/7

라이선스 보기

MD5 hash of files, strings and arrays (RFC 1321)
Hash = GetMD5(Data, Mode, Format)
INPUT:
Data: File name or array.
Mode: CHAR to declare the type of the 1st input.
'File': Data is a file name as CHAR.
'8Bit': If Data is a CHAR array, only the 8 bit ASCII part is used.
'Binary': The MD5 sum is obtained for the contents of Data.
This works for numerical, CHAR and LOGICAL arrays.
'Array': Include the class and dimensions of Data in the MD5
sum. This can be applied for (nested) structs, cells
and sparse arrays also.
Format: CHAR, format of the output: hex, HEX, double, uint8, base64

OUTPUT:
Hash: A 128 bit number is replied in the specified format.

This function is at least 2 times faster than the corresponding Java method.
For shorter arrays this C-Mex implementation is much faster, see the output
of the included unit test function.
The function DataHash can reply SHA hashes also, but it is remarkably
slower due to the overhead of calling Java. For nested structs this C-Mex
can be 100 times faster. See:
http://www.mathworks.com/matlabcentral/fileexchange/31272-datahash
The C-function must be compiled before using: Call the M-function without
inputs. If you do not have a C-compiler, pre-compiled files can be
downloaded: http://n-simon.de/mex

인용 양식

Jan (2024). GetMD5 (https://www.mathworks.com/matlabcentral/fileexchange/25921-getmd5), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2018b
R13SP1 이상 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Spreadsheets에 대해 자세히 알아보기
도움

받음: MD5 in MATLAB

줌: bimac/md5sum, JavaMD5, DataHash

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
2.1.1

M-file accepts inputs now to care about users, who do not follow the install instructions.

2.1

String type is handled.

2.0.0.0

Compilation failed, when _LITTE_ENDIAN was undefined.
Improved speed, the class and size of arrays can be considered, cell and struct arrays accepted. Now arrays and files > 2.1GB are processed.
Fixed problem with compiling under MacOS X.

1.1.0.0

UINT32 has 4 bytes on 64-bit systems now. Thanks to Sebastiaan (34534)!

1.0.0.0