I use multi-step password creation. First time a password is created, it is done with PBKDF2 and with salt/key/iteration
settings to make it fast and cheap on CPU time. Then, I defer a second job to a Gearman worker that does
an update with a more costly update of the password that hogs the CPU.
On Mon, Jun 11, 2012 at 12:59 PM, Dmitri Cherniak
<dmi...@gmail.com> wrote:
I used bcrypt directly in a sample blog post once, but in production I pass it off to an internal HTTP service using asynchttpclient.