Skip to content

Instantly share code, notes, and snippets.

@remarkablemark
Created August 30, 2021 01:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save remarkablemark/336b761b9cf605cf219aae9cea67b32c to your computer and use it in GitHub Desktop.
Save remarkablemark/336b761b9cf605cf219aae9cea67b32c to your computer and use it in GitHub Desktop.
function hash(string) {
const utf8 = new TextEncoder().encode(string);
return crypto.subtle.digest('SHA-256', utf8).then((hashBuffer) => {
const hashArray = Array.from(new Uint8Array(hashBuffer));
const hashHex = hashArray
.map((bytes) => bytes.toString(16).padStart(2, '0'))
.join('');
return hashHex;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment