summaryrefslogtreecommitdiff
path: root/src/misc/crypt_sha256.c
AgeCommit message (Collapse)AuthorLines
2012-09-07cleanup src/linux and src/misc trees, etc.Rich Felker-322/+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-30fix missing statics in crypt_sha256 codeRich Felker-3/+3
2012-08-29add sha256/sha512 cryptRich Felker-0/+322
based on versions sent to the list by nsz, with some simplification and debloating. i'd still like to get them a bit smaller, or ideally merge them into a single file with most of the code being shared, but that can be done later.