Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Bring back ASN1_seq_pack(), ASN1_seq_unpack(), ASN1_pack_string() and | miod | 2014-05-12 | 3 | -0/+215 | |
| | | | | | | | | ASN1_unpack_string() from the NO_ASN1_OLD purge; turns out that some Ruby extensions still use them, unfortunately, so we need to give them some more time to catch up on ``recent'' interfaces. Riding on the libcrypto major bump. | |||||
* | Move the `pqueue' part of libcrypto, which is a glorified sorted linked list | miod | 2014-05-12 | 7 | -24/+323 | |
| | | | | | | | | | | | | | of 64-bit data, and only used by DTLS, to libssl where it belongs. Remove pqueue_print() which is a debugging interface and serves no useful purpose, except for the regress test, which grows its own pqueue_print() routine. Bump libcrypto major and libssl minor. WARNING: do not update your tree right now, more changes are coming, which will ride the libcrypto major bump. | |||||
* | More KNF. | jsing | 2014-05-11 | 5 | -16/+27 | |
| | ||||||
* | KNF. | jsing | 2014-05-11 | 2 | -322/+287 | |
| | ||||||
* | __bounded => __attribute__((__bounded__ | djm | 2014-05-10 | 1 | -5/+5 | |
| | ||||||
* | Typo in C99 field initializer introduced in r1.3; | miod | 2014-05-09 | 1 | -1/+1 | |
| | | | | reported by Steven Chamberlain | |||||
* | Replace Apache v2 license with ISC license. | matthew | 2014-05-09 | 4 | -50/+50 | |
| | | | | | Thanks to Google for agreeing to offer the code under more agreeable licensing terms! | |||||
* | Replace hand-crafted STRICT_ALIGNMENT with system provided __STRICT_ALIGNMENT. | miod | 2014-05-08 | 1 | -17/+7 | |
| | | | | Forgotten during yesterday's STRICT_ALIGNMENT cleanup commit. | |||||
* | More KNF. | jsing | 2014-05-08 | 11 | -45/+94 | |
| | ||||||
* | KNF. | jsing | 2014-05-08 | 12 | -308/+383 | |
| | ||||||
* | Remove KSSL debug code. | jsing | 2014-05-08 | 1 | -21/+0 | |
| | | | | "fire bomb" tedu@ | |||||
* | KNF. | jsing | 2014-05-08 | 7 | -912/+917 | |
| | ||||||
* | Nuke OPENSSL_FIPS - having #ifdefs inside a #ifndef for the same thing | jsing | 2014-05-08 | 2 | -18/+0 | |
| | | | | | | is amusing. ok deraadt@ | |||||
* | KNF. | jsing | 2014-05-08 | 16 | -1499/+1544 | |
| | ||||||
* | knfectomie. | jsing | 2014-05-08 | 1 | -653/+818 | |
| | ||||||
* | Emergency knfectomie requested by tedu@. | jsing | 2014-05-08 | 30 | -6133/+6618 | |
| | ||||||
* | kill some more VMS ifdefs | giovanni | 2014-05-08 | 4 | -16/+0 | |
| | | | | ok miod@ | |||||
* | Get __STRICT_ALIGNMENT from <machine/endian.h> and decide upon it, rather | miod | 2014-05-07 | 9 | -35/+26 | |
| | | | | | | | | | | | | | | than defining it for not (i386 and amd64 (and sometimes s390)) only. Compile-time tests remain compile-time tests, and runtime-test remain runtime-test instead of being converted to compile-time tests, per matthew@'s explicit demand (rationale: this makes sure the compiler checks your code even if you won't run it). No functional change except on s390 (which we don't run on) and vax (which we run on, but noone cares about) ok matthew@ | |||||
* | less than jpake | tedu | 2014-05-07 | 4 | -317/+4 | |
| | ||||||
* | don't free memory unless we allocated it. | tedu | 2014-05-07 | 1 | -2/+4 | |
| | | | | | reported to openssl by David Ramos (rt 3338) stealing commit from logan, who's run away. ok miod. | |||||
* | with the first bug it uncovered fixed, clear all bignums again. | tedu | 2014-05-07 | 1 | -17/+9 | |
| | | | | i've never worked on codebase so resistant to efforts to improve it. | |||||
* | in BN_clear_free, don't cleanse the data if the static data flag is set. | tedu | 2014-05-07 | 1 | -3/+2 | |
| | | | | | | | | much debugging work done by otto. ok miod otto. side note: BN_FLG_STATIC_DATA doesn't actually mean the data is static. it's also used to indicate the data may be secretly shared behind your back as a sort of poor man's refcounting, but without the refcounting. | |||||
* | KNF. | jsing | 2014-05-07 | 14 | -944/+984 | |
| | ||||||
* | revert, thanks sthen | tedu | 2014-05-07 | 1 | -9/+17 | |
| | ||||||
* | add additional includes from eng_cryptodev.c | jsg | 2014-05-07 | 1 | -0/+5 | |
| | | | | | makes this compile with OPENSSL_NO_DEPRECATED defined. ok deraadt@ | |||||
* | small fix from mancha1. currently unused file, but no harm fixing it. | tedu | 2014-05-06 | 1 | -1/+2 | |
| | ||||||
* | Assorted cleanups: | miod | 2014-05-06 | 1 | -14/+4 | |
| | | | | | | | | | | | - replace hardcoded sizes with sizeof() - pqueue_find() apparently used to need to keep track of the previous node when iterating, which causes its logic to be complicated. However, nowadays it only needs to iterate, so replace with a straightforward, much readable logic. - remove #if 0'ed code From ``sin'' from 2f30 dot org on tech@, thanks! | |||||
* | Remove broken-by-design test | miod | 2014-05-06 | 1 | -95/+0 | |
| | ||||||
* | Make sure PKCS7_get_octet_string() return values are checked for NULL. | miod | 2014-05-06 | 1 | -2/+10 | |
| | | | | | | Reported by David Ramos (and simultaneously to OpenSSL as PR#3339). ok beck@ logan@ | |||||
* | knf approximation | tedu | 2014-05-06 | 24 | -8619/+9136 | |
| | ||||||
* | "stay backwards-compatible with 0.9.5; this should go away soon" | tedu | 2014-05-06 | 1 | -8/+0 | |
| | | | | it's your lucky day! | |||||
* | remove Kerberos | tedu | 2014-05-06 | 2 | -41/+0 | |
| | ||||||
* | move a comment to make unifdef happier | tedu | 2014-05-06 | 1 | -2/+3 | |
| | ||||||
* | bye bye SRP | tedu | 2014-05-06 | 4 | -975/+0 | |
| | ||||||
* | inspired by a cloudflare diff, cleanse old memory when expanding a bignum. | tedu | 2014-05-05 | 1 | -17/+9 | |
| | | | | | | however, instead of trying to audit all the places where a secret bignum is used, apply the big hammer and clear all bignums when freed. ok deraadt miod | |||||
* | Sort and group includes. | jsing | 2014-05-05 | 2 | -10/+11 | |
| | ||||||
* | Repair BIO_socket_nbio operation. | jsing | 2014-05-05 | 1 | -2/+3 | |
| | | | | ok miod@ | |||||
* | During the great e_os.h nukathon we stopped pulling in <sys/filio.h> via | jsing | 2014-05-05 | 3 | -35/+6 | |
| | | | | | | | | | the ifdef maze, meaning that FIONBIO was no longer defined. This removes non-blocking I/O support from s_{client,server,time}. Remove all FIONBIO ifdefs and import <sys/ioctl.h>, renabling -nbio. ok miod@ | |||||
* | Kill memory debug calls that are now noops. While here, nuke an #if 0 and | jsing | 2014-05-05 | 1 | -22/+3 | |
| | | | | | | a unnecessary NULL check before free. ok miod@ | |||||
* | OpenBSD has_SC_CLK_TCK. | jsing | 2014-05-05 | 1 | -27/+0 | |
| | | | | ok miod@ | |||||
* | Remove SRP and Kerberos support from libssl. These are complex protocols | tedu | 2014-05-05 | 30 | -5120/+2 | |
| | | | | | all on their own and we can't effectively maintain them without using them, which we don't. If the need arises, the code can be resurrected. | |||||
* | Improve line wrapping for lines exceeding 80 chars. | jim | 2014-05-04 | 82 | -305/+430 | |
| | | | | ok jmc@ | |||||
* | Add missing SEE ALSO section header. | jim | 2014-05-04 | 1 | -0/+2 | |
| | | | | yup jmc@ | |||||
* | Remove trailing whitespace. | jim | 2014-05-04 | 85 | -202/+202 | |
| | | | | fine jmc@ | |||||
* | Remove a leading whitespace. | jim | 2014-05-04 | 1 | -1/+1 | |
| | | | | ok jmc@ | |||||
* | Add missing SEE ALSO section header. | jim | 2014-05-04 | 2 | -0/+4 | |
| | | | | ok jmc@ | |||||
* | Improve line wrapping for lines exceeding 80 chars. | jim | 2014-05-04 | 43 | -58/+115 | |
| | | | | ok jmc@ | |||||
* | Remove trailing whitespace. | jim | 2014-05-04 | 22 | -36/+36 | |
| | | | | ok jmc@ | |||||
* | Remove trailing whitespace. | jim | 2014-05-04 | 37 | -176/+176 | |
| | | | | no objection jmc@ | |||||
* | i give up. reuse problem is unfixable. dlg says puppet crashes. | tedu | 2014-05-04 | 1 | -8/+4 | |
| |