Skip to content

Instantly share code, notes, and snippets.

@kyamagu
Created October 29, 2013 02:58
Show Gist options
  • Save kyamagu/7208529 to your computer and use it in GitHub Desktop.
Save kyamagu/7208529 to your computer and use it in GitHub Desktop.
Calculate MD5 digest.
function digest = md5(value)
%MD5 Calculate MD5 digest.
digest = org.apache.commons.codec.digest.DigestUtils.md5(value)';
digest = typecast(digest, 'uint8');
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment