summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove files which look like actual code compiled in libcrypto, but isn't.miod2014-04-222-170/+0
| | | | One even says (in comments): HAS BUGS! DON'T USE
* fix memory leaks. from Dirk Englingtedu2014-04-223-21/+12
|
* Remove meat which either duplicates code found in apps/, or is only of valuemiod2014-04-2219-3531/+0
| | | | for 20th century historians, and can be put in the Attic.
* KNF.jsing2014-04-212-239/+249
|
* KNF.jsing2014-04-217-343/+409
|
* KNF.jsing2014-04-214-102/+119
|
* KNF.jsing2014-04-2112-1467/+1618
|
* no need for malloc castsderaadt2014-04-212-2/+2
|
* KNF.jsing2014-04-213-83/+77
|
* More KNF.jsing2014-04-214-8/+8
|
* KNF.jsing2014-04-2114-1570/+1612
|
* KNF.jsing2014-04-214-558/+591
|
* KNF.jsing2014-04-215-659/+722
|
* wrong calloc, see people do carederaadt2014-04-211-1/+2
|
* KNF.jsing2014-04-215-1971/+2092
|
* improve realloc/calloc/malloc patterns; ok guentherderaadt2014-04-2116-48/+23
|
* Delete #if 0'd time related functions which are totally expired.deraadt2014-04-212-74/+0
| | | | No point even seeing these when we do the 2038 audit later on...
* modernize malloc callderaadt2014-04-211-1/+1
|
* Replace entire printf-like guts with calls to libc snprintf.deraadt2014-04-211-769/+46
| | | | | funopen(3) is used to interface to BIO descriptors. ok guenther
* Bring malloc/calloc/realloc sequences to modern standardderaadt2014-04-218-27/+19
| | | | ok guenther
* KNF.jsing2014-04-218-548/+456
|
* clean up files we don't needtedu2014-04-2119-1352/+0
|
* fix accidentally deleted deref.beck2014-04-211-1/+1
|
* ASN1_STRING cleanup - realloc has handled NULL since I had a mulletbeck2014-04-201-17/+10
| | | | | | | | | and parachute pants - and since it's obvious there is no guarantee the caller doesn't pass in the data area in the argument, use memmove instead of memcpy so overlapping areas are handled correctly. Also, pointers can be usefully printed in hex with %p, in error messaeges rather than the bizzaro stuff that was there using mystical buffer lengths and abuse of strlcpy-converted-blindly-from-strcpy
* replace a bunch of pointer-arithmatic-strcpy-converted-blindly-to-strlcpybeck2014-04-201-7/+7
| | | | | cruft with an snprintf. "better than what was there" ok guenther@
* Eliminate duplicated logic by switching from malloc+snprintf to asprintfguenther2014-04-201-20/+14
| | | | ok beck@
* Chop off more SSLv2 tentacles and start fixing and noting y2038 issues.guenther2014-04-201-11/+18
| | | | | | | APIs that pass times as longs will have to change at some point... Bump major on both libcrypto and libssl. ok tedu@
* Restore beck's (void)snprintf(): they were reviewed.guenther2014-04-203-5/+5
|
* Restore beck's rev 1.8: snprintf() was reviewed.guenther2014-04-201-2/+2
|
* Restore tedu's rev 1.4: snprintf() was reviewed.guenther2014-04-201-1/+1
|
* Restore beck's rev 1.7: snprintf() was reviewed.guenther2014-04-201-2/+4
| | | | Also, use sizeof() for snprintf()'s size argument
* Restore beck's rev 1.21: snprintf() was reviewedguenther2014-04-201-1/+1
|
* theo found a file we don't seem to need, but just in case, i will pastetedu2014-04-201-3/+0
| | | | | | the contents below: #!/usr/local/bin/perl # x86 assember
* Restore beck's rev 1.9: snprintf() was reviewedguenther2014-04-201-1/+1
|
* KNF.jsing2014-04-205-238/+305
|
* Restore beck's rev 1.3: snprintf() was reviewedguenther2014-04-201-1/+1
|
* More KNF.jsing2014-04-202-3/+3
|
* KNF.jsing2014-04-206-714/+951
|
* KNF.jsing2014-04-206-470/+592
|
* KNF.jsing2014-04-204-264/+359
|
* More KNF.jsing2014-04-2013-80/+88
|
* More KNF.jsing2014-04-201-50/+62
|
* KNF.jsing2014-04-202-181/+219
|
* KNF.jsing2014-04-204-398/+393
|
* Chop off more SSLv2 tentacles and start fixing and noting y2038 issues.guenther2014-04-202-2/+2
| | | | | | | APIs that pass times as longs will have to change at some point... Bump major on both libcrypto and libssl. ok tedu@
* return after error instead of plowing ahead. noticed by mancha1 at zohotedu2014-04-201-0/+1
|
* KNF.jsing2014-04-2012-1154/+1134
|
* reset imprint to NULL to avoid double free. from mancha1 at zohotedu2014-04-201-0/+1
|
* another attempt at fixing stale x509 data. since we don't know where thetedu2014-04-191-10/+8
| | | | | initial storage came from, we can't free it. just memset in the sequence case. probably ok beck
* KNF.jsing2014-04-196-813/+814
|