Skip to content

Instantly share code, notes, and snippets.

@michalbcz
Forked from ikarius/md5.groovy
Created September 17, 2013 06:55
Show Gist options
  • Save michalbcz/6590860 to your computer and use it in GitHub Desktop.
Save michalbcz/6590860 to your computer and use it in GitHub Desktop.
def generateMD5(String s) {
MessageDigest digest = MessageDigest.getInstance("MD5")
digest.update(s.bytes);
new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment