package comparison: bcrypt vs bcryptjs

2020-05-20

 | 

~2 min read

 | 

277 words

In learning more about password management and salting/hashing (which I wrote about here) - I found bcrypt (which I wrote about using here).

Since I work in Javascript, I went looking for a package to use so that I didn’t violate rule #1 of cryptography (never roll your own).

This was when things became typical Javascript-y. There are two fairly popular packages for bcrypt:

  1. bcrypt
  2. bcryptjs

The latter hasn’t been updated in 3 years, but it’s still being downloaded 700k+ / week.

Which begs the question: what’s the difference?

From the bcrypt wiki

bcrypt.js is a pure js implementation version of bcrypt hashing algorithm. It has a similar interface to bcrypt and in most cases used as a drop-in replacement.

Since v2.x of bcrypt, the versions are not entirely compatible. We have an additional parameter to force the generation of 2a or 2b hashes.

Roman Stylman in #500

While bcrypt.js has the same API surface on the JS side; it does not actually implement background work in the same way as the c++ bindings. The c++ bindings use a background thread pool while bcrypt.js will block your main thread pool.

This may have implications for your services so make sure you understand what you are doing and how it will impact your services before switching dependencies.

On an average, c++ bcrypt will be 30% faster than the plain js implementation.

If you are having a small scale project, then bcrypt.js will easily suffice for you. Also, c++ bcrypt will not work in browser environments, the only choice there is bcrypt.js.



Hi there and thanks for reading! My name's Stephen. I live in Chicago with my wife, Kate, and dog, Finn. Want more? See about and get in touch!