summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2021-11-30doc/crypt.5: Document the recommended amount of salt-bits for yescrypt.Björn Esser1-3/+3
Also document the same value as the recommended amount for gost-yescrypt and scrypt.
2021-05-19doc/crypt_checksalt.3: Mark `CRYPT_SALT_METHOD_LEGACY` to be implemented.Björn Esser1-1/+1
2020-10-10Fix typos.Samanta Navarro1-1/+1
Typos were found with codespell.
2020-08-18doc/crypt.5: Update allowed salt characters for {md5,sha256,sha512}crypt.Björn Esser1-3/+3
2020-02-10doc/crypt.5: typo fix.Zack Weinberg1-1/+1
2019-03-01Move code, documentation, and tests into subdirectories.Zack Weinberg10-0/+1230
There are enough files now that it’s getting confusing to have everything at the top level. Create subdirectories ‘lib’, ‘doc’, and ‘test’. Move all of the code linked into libcrypt.a into ‘lib’. Move all the manpages into ‘doc’. Move all of the test programs into ‘test’. There is still only one Makefile at top level. Automake doesn’t make nonrecursive makefiles as easy as it could, but everything that was written in http://aegis.sourceforge.net/auug97.pdf back in 1997(!) is still true. https://www.microsoft.com/en-us/research/wp-content/uploads/2016/03/hadrian.pdf has an interesting counterpoint but I don’t think we’re anywhere near the scale where those problems are relevant.