Y
Hacker News
new
|
ask
|
show
|
jobs
by
PrimeMcFly
876 days ago
Guess how many systems are using KDF algorithms in practice?
2 comments
TillE
876 days ago
Probably the vast majority of important systems. PBKDF2 has been around forever and is in very widespread use.
link
stavros
876 days ago
The fact that they aren't implementing the solution doesn't mean that the solution doesn't exist or isn't effective, though.
Plus, nowadays, most (all?) big frameworks have used KDFs by default for years.
link
PrimeMcFly
876 days ago
True. I don't think Windows or Linux do though, right?
link
stavros
876 days ago
Linux uses bcrypt by default, AFAIK. Windows had NTLM last I looked, but I don't know what they have now.
link
zoolily
876 days ago
Ubuntu Linux used to use a SHA2 hash repeated 5000 times, but my Ubuntu 22.04 system uses yescrypt, which is one of those KDFs.
link
PrimeMcFly
876 days ago
nice!
link