Ryan Chouinard
Ryan Chouinard
I second this request. I sometimes have to cut thin materials, and it would be much better to cut the inner-most features before the outer-most to avoid shifts due to...
This is actually the way TOTP works. [RFC 6238](https://tools.ietf.org/html/rfc6238) extends [RFC 4226](https://tools.ietf.org/html/rfc4226) by converting a timestamp into a counter value based on a defined algorithm. The counter value will change...
It looks like your installation is falling back to CRYPT_STD_DES instead of using the expected CRYPT_EXT_DES. I try to account for issues like this in the library, but it's very...
I would say for some reason your system lacks support for CRYPT_EXT_DES. That isn't supposed to happen in php 5.3+, but I'm not surprised from the issues I've encountered with...
Yes, the default is bcrypt with a cost factor of 12.
Thanks for bringing this to my attention. When I was researching entropy calculation methods, I found that there are few standard methods and almost all are disputed. I chose NIST...