summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Discard first 256 bytes of keystream, as per recommendation indjm2003-11-261-1/+10
| | | | | "Weaknesses in the Key Scheduling Algorithm of RC4", Fluhrer, Mantin and Shamir. ok itojun@
* wording improvement from Michael Knudsen;jmc2003-08-281-2/+2
|
* just use sysctl for stirring. thread safe and can't fail.tedu2003-08-161-23/+10
| | | | ok deraadt and co.
* Split crypto routine sup again, but differently. This should make thederaadt2003-08-123-84/+149
| | | | mail floppy parts a fair bit smaller.
* unsplice crypt.c and morecrypt.c; start to document some bcrypt and md5cryptderaadt2003-08-074-658/+67
| | | | things in crypt.3, and create MLINKS
* ansideraadt2003-08-072-18/+8
|
* protosderaadt2003-06-252-3/+7
|
* ansification; checked by pvalderaadt2003-06-111-18/+9
|
* - section reorder in crypt(3)jmc2003-05-302-5/+5
| | | | - use .An/.Aq for authors
* makeing local table static saves some bytes; idea from mickey@markus2003-04-091-2/+2
|
* Use snprintf instead of a strcpy(), strncat() and strcat() sequencemillert2003-04-021-5/+4
| | | | deraadt@ OK
* re-stir if pid changes; markus & mederaadt2003-02-141-3/+5
|
* wierd -> weirdpvalchev2002-04-291-3/+3
|
* We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.millert2002-02-192-117/+2
|
* Part one of userland __P removal. Done with a simple regexp with some minor ↵millert2002-02-163-12/+12
| | | | hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
* fix the history refsmickey2002-01-241-2/+2
|
* o) We always close .Bl and .Bd tags;mpech2001-08-062-4/+4
| | | | | | | | | | o) .Sh AUTHOR -> .Sh AUTHORS; o) We don't like .Pp before/after .Sh; o) We don't like .Pp before/after .Rs/.Re; o) NetBSD -> .Nx; o) OpenBSD -> .Ox; millert@ ok
* use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok.lebel2001-06-271-4/+3
|
* License clarification from David Mazieres, ok deraadt@pvalchev2001-06-051-3/+2
|
* grammer/spellingtodd2001-01-042-4/+4
|
* typo; ciper -> cipheraaron2000-12-211-2/+2
|
* return error if salt is too small; pr 1336provos2000-08-021-1/+4
|
* fleshderaadt2000-04-281-3/+23
|
* improve the englishderaadt2000-04-281-4/+5
|
* type decl errorderaadt2000-04-281-3/+3
|
* Repairs.aaron2000-04-183-51/+69
|
* Mostly punctuation fixes.aaron2000-04-153-9/+10
|
* First appeared in OpenBSD 2.1millert2000-04-021-1/+4
|
* Suffix "i.e." and "e.g." with a comma. Just another really picky man pageaaron2000-03-141-2/+2
| | | | | commit, as we want our documentation to be as consistently formatted as possible (it's getting there :-)).
* ie. -> i.e.,aaron2000-01-221-2/+2
|
* speed up blowfish by > 20%.provos1999-12-281-28/+32
|
* Add missing MLINKsmillert1999-11-171-2/+4
|
* Set j = i after arc4random key schedule to be more like arc4 stream cipher;deraadt1999-09-281-1/+2
| | | | from conversations between various people
* Typo fixes.alex1999-09-231-2/+2
|
* - remove all trailing whitespaceaaron1999-07-093-33/+33
| | | | | | | | | | * except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
* trash some old leftover macros and replace them with -mdoc macrosaaron1999-07-041-5/+2
|
* clarify trade secret issuederaadt1999-06-301-4/+9
|
* if /dev/arandom is not available for seeding, use data from sysctlprovos1999-06-291-5/+22
| | | | kern.arandom.
* punctuationaaron1999-05-251-2/+2
|
* remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonaaron1999-05-232-4/+4
| | | | is used instead; kwesterback@home.com
* spellingderaadt1999-05-171-3/+3
|
* Cleanup xrefs under SEE ALSO. Specifically:alex1999-05-162-4/+4
| | | | | | | - Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries.
* CBC bug reported by Juergen Nickelsen <ni@tellique.de>niklas1999-05-141-2/+2
|
* use stdlib; millertderaadt1999-03-261-2/+2
|
* typo; nash@mcs.netaaron1999-03-181-2/+2
|
* skipjack in libc; isakmpd and such will want itderaadt1999-02-262-2/+260
|
* Add thread-safety to libc, so that libc_r will build (on i386 at least).d1998-11-201-2/+2
| | | | | | | | | | | | | All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
* More man page fixes. Particularly fix uses of it's/its, affect/effect,aaron1998-09-071-2/+2
| | | | | then/than and such. Other miscellaneous problems fixed across these source files.
* Fix UA cases in a MI wayniklas1998-08-301-57/+59
|
* doc UA faulting codederaadt1998-08-221-1/+4
|