about summary refs log tree commit diff
path: root/src/misc/crypt_blowfish.c
Commit message (Collapse)AuthorAgeFilesLines
* cleanup src/linux and src/misc trees, etc.Rich Felker2012-09-071-798/+0
| | | | | | | | | | | | previously, it was pretty much random which one of these trees a given function appeared in. they have now been organized into: src/linux: non-POSIX linux syscalls (possibly shard with other nixen) src/legacy: various obsolete/legacy functions, mostly wrappers src/misc: still mostly uncategorized; some misc POSIX, some nonstd src/crypt: crypt hash functions further cleanup will be done later.
* anti-DoS rounds count limits for blowfish and des cryptRich Felker2012-08-291-1/+1
| | | | | all of the limits could use review, but err on the side of avoiding excessive rounds for now.
* add blowfish hash support to cryptRich Felker2012-08-101-0/+798
there are still some discussions going on about tweaking the code, but at least thing brings us to the point of having something working in the repository. hopefully the remaining major hashes (md5,sha) will follow soon.