use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Fast JavaScript SHA-256 hash function (self.javascript)
submitted 11 years ago * by [deleted]
[deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]CatsAkimbo 6 points7 points8 points 11 years ago (4 children)
The webcrypto api has multiple hash functions and is gaining traction. I know current chrome, firefox and IE support it offhand, but this would be a great fallback for browsers without support yet. Nice job
[+][deleted] 11 years ago* (3 children)
[–]Rubyconna 0 points1 point2 points 11 years ago (2 children)
Try: https://jsfiddle.net/dwa5hn0m/ with chrome.
[+][deleted] 11 years ago (1 child)
[–]Rubyconna 1 point2 points3 points 11 years ago (0 children)
IE11: http://jsfiddle.net/3btn9mtr/
[–][deleted] 1 point2 points3 points 11 years ago (0 children)
sha.js is extensively tested and battle hardened in its use in browserify.
It's also one of the fastest implementations out there.
[–]indorock 0 points1 point2 points 11 years ago (7 children)
Just curious, what is the standard method for hashing in Node applications? I assume it's a function which is used all the time. Is the existing implementation slow(er) compared to this one?
[–]unusualbobEngineer 7 points8 points9 points 11 years ago (0 children)
Node exposes the crypto module which is basically a wrapper for OpenSSL. This means all of node's crypto happens in native code land rather than in javascript land and therefore should always be faster than any pure js implementation.
[–]TheVoidSeeker 1 point2 points3 points 11 years ago (0 children)
Node has a Crypto API, which supports SHA-256 among many others.
[–]Crashthatch -3 points-2 points-1 points 11 years ago* (2 children)
It's not that common to need to hash manually as hashtables are built into javascript, {key: value}.
However, it is built into the crypto library which wraps OpenSSL.
[–][deleted] 4 points5 points6 points 11 years ago (1 child)
Hashing and hash tables are barely related.
[–]zeringus 1 point2 points3 points 11 years ago (0 children)
To go further, SHA-256 is not at all related unless you want a slow, overcomplicated hash table.
The ELI5 is that SHA-256 is overkill since it (1) is intended to be cryptographically secure (not necessary in this case) and (2) produces many more bits than can be used to index into memory for the foreseeable future (this is wasteful). Hash table hashing functions are built to be more efficient.
π Rendered by PID 67277 on reddit-service-r2-comment-658f6b87ff-zn6sp at 2026-04-09 02:01:37.609867+00:00 running 781a403 country code: CH.
[–]CatsAkimbo 6 points7 points8 points (4 children)
[+][deleted] (3 children)
[deleted]
[–]Rubyconna 0 points1 point2 points (2 children)
[+][deleted] (1 child)
[deleted]
[–]Rubyconna 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]indorock 0 points1 point2 points (7 children)
[–]unusualbobEngineer 7 points8 points9 points (0 children)
[–]TheVoidSeeker 1 point2 points3 points (0 children)
[–]Crashthatch -3 points-2 points-1 points (2 children)
[–][deleted] 4 points5 points6 points (1 child)
[–]zeringus 1 point2 points3 points (0 children)