summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/malloc.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2004-01-23sort options and clean up openssl ocsp;jmc1-355/+359
plus a stab at making this page more consistent;
2004-01-23Use correct cvs id string.hshoexer6-6/+6
ok deraadt@
2004-01-23remove junk return at endderaadt2-4/+0
2004-01-23enable acss.hshoexer5-5/+17
ok @deraadt @markus Also bump minor version. ok @deraadt
2004-01-23evp api and manual page for acsshshoexer3-0/+236
ok deraadt@ markus@
2004-01-23Add acss to libcrypto.hshoexer6-0/+614
ok deraadt@ markus@
2004-01-23sort options and tidy openssl nseq;jmc1-5/+5
2004-01-22-S enables tcp md5 signature option; ok deraadt@, mcbride@markus2-6/+25
2004-01-21fix Makefiledavid1-2/+2
ok millert@
2004-01-20Call _exit() not exit() from abort() if we are unable to kill ourselvesmillert1-3/+3
to avoid flushing stdio twice. This code path should never really happen though. Also make the function declaration ANSI. OK deraadt@
2004-01-20Add strptime regress from NetBSD; OK miod@ after un-peeing.millert6-2/+749
2004-01-20Fix the example code. The loop invariant 'i' was not bound by MAXTOKENSmillert1-3/+3
which could result in writing a NUL byte outside of tokens[]. A fix, from Patrick Latifi, is to move the increment into the "i < MAXTOKENS - 1" block.
2004-01-16Test more ways of producing a positive infinity, and then test negativemiod2-9/+67
infinity as well to prevent entropy leak; the usual suspects still fail all tests.
2004-01-15Add a new regression test, which checks that we handle fp overflow correctly,miod3-2/+43
and produce a correct infinity. Currently, this tests fails on 68060 (060sp is to blame) and 88100 processors, and maybe more.
2004-01-14Fix printf format string. ok markus@otto1-1/+1
2004-01-06- Rename index to longindex and explain its use.fgsch1-9/+20
- Talk about zeroing the last element of the longopts array. - Remove '?' from the switch and some KNF to the code. - Change 0's to NULL where appropriate. jmc@ ok.
2003-12-30sync protos with <netdb.h>;jmc1-3/+3
from Andrey Matveev;
2003-12-29updates for openssl gen{d,r}sa:jmc1-51/+55
- sort options - document "-out filename" for gendsa - typos and grammar
2003-12-25Test a large negative malloc value as well.miod1-1/+2
2003-12-21document (lightly) openssl errstr;jmc1-2/+29
feedback from markus@
2003-12-19update for openssl enc:jmc1-125/+121
- sort options - -p and -P also show salt - expand IV - remove -salt from the examples which decrypt - remove an example which doesn't work, and is not really helpful help from markus@
2003-12-13sort options and typos for openssl {dsa,dsaparam};jmc1-56/+56
2003-12-12niels kindly dropped clause 3/4 from the license. tnx!itojun1-6/+1
2003-12-12we can skip arc4random() call here. markusitojun1-2/+2
2003-12-10correct non-repetitive ID code, based on comments from niels provos.itojun1-12/+16
- seed2 is necessary, but use it as "seed2 + x" not "seed2 ^ x". - skipping number is not needed, so disable it for 16bit generator (makes the repetition period to 30000)
2003-11-26Discard first 256 bytes of keystream, as per recommendation indjm1-1/+10
"Weaknesses in the Key Scheduling Algorithm of RC4", Fluhrer, Mantin and Shamir. ok itojun@
2003-11-26small update for openssl dsa and sort options;jmc1-57/+57
2003-11-25wording improvements from Brian Poole;jmc1-5/+4
kill a .Pp before a display;
2003-11-21small update for openssl dhparam: sort options and document -check;jmc1-59/+62
2003-11-19Break up the colon-separated path to -I into two -I args so the treemillert1-2/+2
can build with perl 5.8.2. Ok markus@
2003-11-19only whine about recursion once, so we don't get into problems with loops.tedu1-19/+26
2003-11-18use bn_asm_vax.S (from netbsd); test + ok by miodmarkus18-25/+588
use asm code for i386, except for the CBC code, because it is not clean PIC code. add <machime/asm.h> support to x86unix.pl tested by: nick (on 30386), henning, djm, tedu, jmc and more; no shlib minor crank necessary, only internal symbols changed.
2003-11-13remove obsolete filesmarkus10-6089/+0
2003-11-12remove -g for i386markus1-7/+3
2003-11-11crank minor for ERR_release_err_state_tablemarkus1-1/+1
2003-11-11merge 0.9.7c; minor bugsfixes;markus132-435/+1127
API addition: ERR_release_err_state_table [make includes before you build libssl/libcrypto]
2003-11-11import 0.9.7cmarkus102-280/+1976
2003-10-30double word, from Tom Cosgrove;jmc1-2/+2
2003-10-30small update for DGST;jmc1-35/+40
2003-10-26update for crl and crl2pkcs7;jmc1-64/+66
2003-10-25don't destroy old pointer if realloc fails; from Daniel Lucq; ok deraadt@markus2-6/+14
2003-10-24small update for CIPHERS;jmc1-15/+15
2003-10-22- slight update and sort options for CA sectionjmc1-267/+267
- remove some unnecessary .Ns's - typos
2003-10-19check alloca; pointed out by nimadeus@pandora.bederaadt1-2/+3
2003-10-16by popular demand, malloc guard pages. insert an unreadable/unwriteabletedu2-5/+52
page after each page size allocation to detect overrun. this is somewhat electric fence like, while attempting to be mostly usable in production. also, use tdeval's chunk randomization code. enabled with the G option. ok deraadt and co.
2003-10-15abort on errors by default. workaround so running out of memory isn'ttedu1-3/+3
actually an error, A still applies full effect. suggested by phk. ok deraadt@ tdeval@
2003-10-08cleanup of PASS PHRASE ARGUMENTS and ASN1PARSE;jmc1-63/+69
2003-10-06ANSIfication; most from Patrick Latifimillert1-72/+39
OK deraadt@
2003-10-04remove my wacky spacing; some typos from 0.97c;jmc1-10/+10
2003-10-03Fix off-by-one, patch from Patrick Latifi; closes PR 3492millert1-5/+5