about summary refs log tree commit diff
path: root/src/misc/crypt_sha256.c
Commit message (Collapse)AuthorAgeFilesLines
* cleanup src/linux and src/misc trees, etc.Rich Felker2012-09-071-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.
* fix missing statics in crypt_sha256 codeRich Felker2012-08-301-3/+3
|
* add sha256/sha512 cryptRich Felker2012-08-291-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.