index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libutil
/
bcrypt_pbkdf.c
Age
Commit message (
Expand
)
Author
2020-08-02
Squelch warning by using idiom from libc bcrypt(3)
Theo Buehler
2019-11-21
zero tmpout too. reminded by related diff from tim
Ted Unangst
2019-11-21
overwrite the key in failure modes in case the caller doesn't check.
Ted Unangst
2015-01-12
rename blocks to words. bcrypt "blocks" are unrelated to blowfish blocks,
Ted Unangst
2015-01-08
declare a local version of MIN(), call it MINIMUM()
Theo de Raadt
2015-01-07
Do not need sys/param.h
Theo de Raadt
2014-12-30
typo in comment: ouput => output
Damien Miller
2014-07-13
include stdint.h for standard ints. from Jean-Philippe Ouellet
Ted Unangst
2014-06-30
sys/types.h rather than sys/param.h, where applicable. avoid overreach.
Theo de Raadt
2014-04-08
fix an error in the stride calculations. the math only works for multiples
Ted Unangst
2014-01-31
explicit_bzero where useful
Ted Unangst
2013-12-22
tweak comment
Ted Unangst
2013-07-29
fix a colossal cockup due to pointer/array confusion.
Ted Unangst
2013-06-04
revert. check is < 1, not < 0.
Ted Unangst
2013-06-04
oops, rounds is unsigned now
Ted Unangst
2013-06-03
Add bcrypt_pbkdf, a password based key derivation function using bcrypt.
Ted Unangst