aboutsummaryrefslogtreecommitdiff
path: root/lib/libcrypt/crypt.3
Commit message (Collapse)AuthorAgeFilesLines
* MFC: Reduce gratuitous diffs to -CURRENT.Ruslan Ermilov2001-12-171-1/+1
| | | | Notes: svn path=/stable/4/; revision=88037
* MFC: 1.24: s/crypt_format/crypt_default/Ruslan Ermilov2001-12-131-1/+1
| | | | Notes: svn path=/stable/4/; revision=87789
* MFC: markup and misc fixes.Ruslan Ermilov2001-08-171-4/+2
| | | | | | | Approved by: re Notes: svn path=/stable/4/; revision=81834
* MFC: remove whitespace at EOL.Dima Dorfman2001-07-221-1/+1
| | | | Notes: svn path=/stable/4/; revision=80145
* MFC: remove extraneous .Pp before and/or after .Sh.Dima Dorfman2001-07-221-1/+0
| | | | Notes: svn path=/stable/4/; revision=80140
* MFC: remove duplicate words.Dima Dorfman2001-07-221-2/+2
| | | | Notes: svn path=/stable/4/; revision=80135
* MFC: Blowfish password hashing scheme (From OpenBSD) and remove the dlsym()Mark Murray2001-05-241-13/+29
| | | | | | | hack. Notes: svn path=/stable/4/; revision=77126
* MFC: Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-291-2/+2
| | | | Notes: svn path=/stable/4/; revision=70483
* MFC: recent mdoc(7) fixes.Ruslan Ermilov2000-12-081-2/+3
| | | | Notes: svn path=/stable/4/; revision=69764
* MFC: login.conf password format switchingBrian Feldman2000-09-201-8/+43
| | | | Notes: svn path=/stable/4/; revision=66119
* MFC: Remove reference to SHS passwords.Kris Kennaway2000-04-221-4/+2
| | | | Notes: svn path=/stable/4/; revision=59525
* MFC: introduce .Lb macro to libraries manpages, some mdoc cleanupAlexey Zelkin2000-04-221-19/+54
| | | | Notes: svn path=/stable/4/; revision=59519
* A bunch of factual corrections.Mark Murray2000-01-181-7/+4
| | | | Notes: svn path=/head/; revision=56251
* Fixed missing include in synopsis.Bruce Evans2000-01-131-0/+1
| | | | Notes: svn path=/head/; revision=55897
* Fixed a formatting error in the prototype for crypt().Bruce Evans1999-12-231-2/+2
| | | | Notes: svn path=/head/; revision=55042
* Big code cleanup. (Inspired by Brandon Gillespie). Also move asMark Murray1999-09-201-0/+203
| | | | | | | much as possible away from secure/ to make extending easier. Notes: svn path=/head/; revision=51462
* The new crypt code broke "make world". Back it out.Mark Murray1999-01-231-201/+0
| | | | Notes: svn path=/head/; revision=43092
* Rewrite of crypt library to be more modular, and addition of theBrandon Gillespie1999-01-211-0/+201
Secure Hashing Algorithm - 1 (SHA-1), along with the further refinement of what $x$salt$hash means. With this new crypt the following are all acceptable: $1$ $MD5$ $SHA1$ Note: $2$ is used by OpenBSD's Blowfish, which I considered adding as $BF$, but there is no actual need for it with SHA-1. However, somebody wishing to add OpenBSD password support could easilly add it in now. There is also a malloc_crypt() available in the library now, which behaves exactly the same as crypt(), but it uses a malloced buffer instead of a static buffer. However, this is not standard so will likely not be used much (at all). Also, for those interested I did a brief speed test Pentium 166/MMX, which shows the DES crypt to do approximately 2640 crypts a CPU second, MD5 to do about 62 crypts a CPU second and SHA1 to do about 18 crypts a CPU second. Reviewed by: Mark Murray Notes: svn path=/head/; revision=42981