Hello!
> One of the bcrypt scheme main properties is that it allows to
> control number of rounds, and thus control hashing speed. With
> low number of rounds it is reasonably fast. For example, with 2^5
> rounds (default used by htpasswd) it takes about 4 milliseconds
> here on a test box:
Hello,
> In nginx there is no native support for bcrypt passwords as
> produced by Apache's htpasswd. On the other hand, nginx can use
> all password schemes supported by crypt(3) on your OS. Many
> operating systems do support bcrypt-encrypted passwords in
> crypt(3), and if Apache's varia