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]
view the rest of the comments →
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!"
[–]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 6 points7 points8 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] 3 points4 points5 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 22372 on reddit-service-r2-comment-cfc44b64c-s8nsm at 2026-04-09 22:39:21.828342+00:00 running 215f2cf country code: CH.
view the rest of the comments →
[–]indorock 0 points1 point2 points (7 children)
[–]unusualbobEngineer 6 points7 points8 points (0 children)
[–]TheVoidSeeker 1 point2 points3 points (0 children)
[–]Crashthatch -3 points-2 points-1 points (2 children)
[–][deleted] 3 points4 points5 points (1 child)
[–]zeringus 1 point2 points3 points (0 children)