summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* When OPENSSL_LOAD_CONF was added it ended up with more #if 0 code,jsing2014-05-167-190/+30
| | | | | | | | | | | more #ifdefs and a new source file that contains a single function. Nuke the #if 0 code that is now a macro and move the single function in evp_acnf.c to c_all.c, which is where the other code lives. While here, tidy evp.h slightly, remove an unnecessary #ifdef __OpenBSD__ and nuke a comment that is now a lie. ok miod@
* use $2b in the bcrypt example, ok tedusthen2014-05-161-3/+3
|
* Fix memory leaks upon failure.miod2014-05-154-54/+78
| | | | ok beck@
* Replace ASN1_GENERALIZEDTIME_adj(), ASN1_UTCTIME_adj() andmiod2014-05-156-50/+146
| | | | | | | ASN1_TIME_to_generalizedtime() with wrappers around their former implementations, making sure memory allocated is freed in all failure cases. help and ok from beck@ and Brendan MacDonell.
* No longer make pqueue.h a public (and installed) header file. Replace itsmiod2014-05-157-6/+12
| | | | | | | | | inclusion in <ssl/dtls1.h> by the benign `struct _pqueue; typedef struct _pqueue *pqueue;'. Note that said dtls1.h should probably be considered a private header as well... ok beck@
* Get pqueue.h from the libssl sources rather than relying upon it beingmiod2014-05-152-2/+4
| | | | installed.
* More KNF.jsing2014-05-158-14/+14
|
* Add additional chacha20-poly1305 test vectors.jsing2014-05-152-10/+620
| | | | Thanks to Piotr Sikora for providing a reference to the source.
* Use C99 initialisers for the AEAD struct.jsing2014-05-152-18/+18
|
* Add chacha20-poly1305 test vector to regress.jsing2014-05-152-5/+24
|
* KNF.jsing2014-05-152-140/+134
|
* Add a ChaCha20-Poly1305 AEAD EVP implementation to libcrypto, from Adamjsing2014-05-157-2/+546
| | | | | | Langley's Chromium OpenSSL patches. ok miod@
* KNF.jsing2014-05-1512-613/+736
|
* Add a regress test for AEAD, based on Adam Langley's code.jsing2014-05-153-0/+413
|
* Add an AEAD EVP interface to libcrypto, along with AES-GCM AEADjsing2014-05-1511-68/+1100
| | | | | | | implementations. This largely pulls in Adam Langley's AEAD patches from Chromium's OpenSSL. ok miod@
* Stop being a dummy... presumably these are left overs from pedantic modejsing2014-05-1518-44/+4
| | | | | | that were not wrapped with #if PEDANTIC. ok miod@
* stop flushing streams in abort(). it's hackish and unsafe, and no longertedu2014-05-142-21/+13
| | | | | required. try to document this fact and some of the history. with feedback from deraadt guenther millert
* Add poly1305 to libcrypto utilising Andrew Moon's public domainjsing2014-05-1410-2/+877
| | | | | | implementation. ok miod@
* Remove AES_bi_ige_encrypt() from libcrypto. This routine is supposed to usemiod2014-05-125-366/+0
| | | | | | | | | | | | | two keys and four IVs to do much magic, is specified as such with test vectors, but the implementation actually always uses the first key, and the test vectors were computed with it, so they are wrong. Fixing the code to match the intended specification would break interoperability with existing code (assuming such code would exist), so it is better to remove this interface, which is obviously too complex for mere mortals if even its author can not implement it correctly. Riding on the libcrypto major bump.
* Bring back ASN1_seq_pack(), ASN1_seq_unpack(), ASN1_pack_string() andmiod2014-05-126-0/+430
| | | | | | | | 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 listmiod2014-05-1212-62/+40
| | | | | | | | | | | | | 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.
* remove md5crypt.tedu2014-05-125-195/+65
| | | | | | while changing things, add a crypt_checkpass wrapper that handles most of the edge cases. (not quite ready for production, though.) ok deraadt
* change to having four freelists per size, to reduce another source oftedu2014-05-121-16/+20
| | | | | deterministic behavior. four selected because it's more than three, less than five. i.e., no particular reason.
* More KNF.jsing2014-05-1110-32/+54
|
* KNF.jsing2014-05-114-644/+574
|
* fix MALLOC_STATS code that was broken in rev 1.159, not compiled in by defaultotto2014-05-101-2/+2
|
* __bounded => __attribute__((__bounded__djm2014-05-102-10/+10
|
* Typo in C99 field initializer introduced in r1.3;miod2014-05-092-2/+2
| | | | reported by Steven Chamberlain
* Replace Apache v2 license with ISC license.matthew2014-05-098-100/+100
| | | | | Thanks to Google for agreeing to offer the code under more agreeable licensing terms!
* Add a bit more detail about dot notation from the old inet(3) manpage.guenther2014-05-091-3/+11
| | | | ok jmc@
* move reallocarray() to a seperate file so that -portable applicationsderaadt2014-05-083-18/+46
| | | | | can avoid reinventing the wheel ok guenther schwarze
* Replace hand-crafted STRICT_ALIGNMENT with system provided __STRICT_ALIGNMENT.miod2014-05-082-34/+14
| | | | Forgotten during yesterday's STRICT_ALIGNMENT cleanup commit.
* More KNF.jsing2014-05-0822-90/+188
|
* KNF.jsing2014-05-0824-616/+766
|
* Remove KSSL debug code.jsing2014-05-082-42/+0
| | | | "fire bomb" tedu@
* KNF.jsing2014-05-0814-1824/+1834
|
* Nuke OPENSSL_FIPS - having #ifdefs inside a #ifndef for the same thingjsing2014-05-084-36/+0
| | | | | | is amusing. ok deraadt@
* KNF.jsing2014-05-0832-2998/+3088
|
* knfectomie.jsing2014-05-082-1306/+1636
|
* Emergency knfectomie requested by tedu@.jsing2014-05-0860-12266/+13236
|
* kill some more VMS ifdefsgiovanni2014-05-088-32/+0
| | | | ok miod@
* Get __STRICT_ALIGNMENT from <machine/endian.h> and decide upon it, rathermiod2014-05-0718-70/+52
| | | | | | | | | | | | | | 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 jpaketedu2014-05-074-317/+4
|
* don't free memory unless we allocated it.tedu2014-05-072-4/+8
| | | | | 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.tedu2014-05-072-34/+18
| | | | 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.tedu2014-05-072-6/+4
| | | | | | | | 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.
* comment style fixhalex2014-05-071-2/+3
| | | | ok crickets@
* KNF.jsing2014-05-0728-1888/+1968
|
* revert, thanks sthentedu2014-05-072-18/+34
|
* add additional includes from eng_cryptodev.cjsg2014-05-072-0/+10
| | | | | makes this compile with OPENSSL_NO_DEPRECATED defined. ok deraadt@