summaryrefslogtreecommitdiff
path: root/src/misc/crypt_blowfish.c
AgeCommit message (Collapse)AuthorLines
2012-09-07cleanup src/linux and src/misc trees, etc.Rich Felker-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.
2012-08-29anti-DoS rounds count limits for blowfish and des cryptRich Felker-1/+1
all of the limits could use review, but err on the side of avoiding excessive rounds for now.
2012-08-10add blowfish hash support to cryptRich Felker-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.