How does this MD5 algorithm hash strings?
4 次查看(过去 30 天)
显示 更早的评论
Hello,I have MD5 algorithm to digest strings.I can not analyse how it works.can any one help me to understand how 'CoreHash' works in my mfile? mfile is attached.thanks
0 个评论
回答(1 个)
Walter Roberson
2016-7-12
It calls Java to create a message digest engine, and then it runs through the array or data file feeding chunks of the data to the engine, which updates the MD5 as it goes. Eventually it gets to the end and has the Java message digest engine return the hash, which it converts to hex.
You might prefer to look at http://www.mathworks.com/matlabcentral/fileexchange/5498-md5-signature-of-a-file
2 个评论
Walter Roberson
2016-7-12
https://docs.oracle.com/javase/7/docs/api/java/security/MessageDigest.html
Note the link to the algorithm description that is given there.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!