Live data from Hacker News

SHA-512 is 1.5x faster than SHA-256 on 64-bit platforms

crypto.stackexchange.com

1–10 of 15 posts

Re: SHA-512 is 1.5x faster than SHA-256 on 64-bit platforms

#2
Similarly:

    BLAKE2s (32-bit words) - 554 MiB/s
    BLAKE2b (64-bit words) - 890 MiB/s
(source: https://blake2.net/)

The difference is also clear in pure JavaScript implementations — JS doesn't have native 64-bit integer operations yet, so SHA-512 is slower there:

   SHA-256 - 103.17 MiB/s
   SHA-512 -  34.29 MiB/s

Note that since SHA-512 eats 128-byte blocks, while SHA-256 64-byte blocks, hashing very short strings may be faster with SHA-256 even on 64-bit platforms (the same applies to BLAKE2).

Re: SHA-512 is 1.5x faster than SHA-256 on 64-bit platforms

#10
post #2

Similarly: BLAKE2s (32-bit words) - 554 MiB/s BLAKE2b (64-bit words) - 890 MiB/s (source: https://blake2.net/ ) The difference is also clear in pure JavaScript implementations — JS doesn't have native 64-bit integer operations yet, so SHA-512 is slower there: SHA-256 - 103.17 MiB/s SHA-512 - 34.29 MiB/s Note that since SHA-512 eats 128-byte blocks, while SHA-256 64-byte blocks, hashing very short strings may be faste…

> in pure JavaScript implementations

Is not JS cryptography a bad idea?

Post reply on HN