Last active
January 24, 2025 11:43
-
-
Save lusbuab/261a161dc070d214499b9f6ba737363f to your computer and use it in GitHub Desktop.
Calculating SHA-1 in the Browser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function sha1(str) { | |
const enc = new TextEncoder(); | |
const hash = await crypto.subtle.digest('SHA-1', enc.encode(str)); | |
return Array.from(new Uint8Array(hash)) | |
.map(v => v.toString(16).padStart(2, '0')) | |
.join(''); | |
} | |
// await sha1('hello, world!'); | |
// outputs: 1f09d30c707d53f3d16c530dd73d70a6ce7596a9 |
@glachancecmaisonneuve yes, thanks for pointing this out. I've updated the code accordingly. Hopefully noone got confused by this in the 5 years since I've posted this 🫣
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pad is not a function. did you mean padStart?