Skip to content

Instantly share code, notes, and snippets.

@skauk
Last active December 16, 2024 09:04
Show Gist options
  • Select an option

  • Save skauk/ad7d4623b0a2d90415323f96e634cdee to your computer and use it in GitHub Desktop.

Select an option

Save skauk/ad7d4623b0a2d90415323f96e634cdee to your computer and use it in GitHub Desktop.
MD5 Hash in Google Apps Script
function md5(inputString) {
return Utilities.computeDigest(Utilities.DigestAlgorithm.MD5, inputString)
.reduce((output, byte) => output + (byte & 255).toString(16).padStart(2, '0'), '');
}
@foufrix

foufrix commented Feb 2, 2023

Copy link
Copy Markdown

This is gold thanks 👍

@Adbroad

Adbroad commented Nov 10, 2023

Copy link
Copy Markdown

Really useful thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment