summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-16update NAME and MLINKS for previous;Jason McIntyre
2014-05-16more STANDARDS fleshing; ok sobrado millertJason McIntyre
2014-05-16document crypt_checkpassTed Unangst
2014-05-16add prototypes for new crypt functionsTed Unangst
2014-05-16syncTodd T. Fries
2014-05-16Reduce the difference between HC drivers by always passing a genericMartin Pieuchot
usbd_xfer pointer to the routines processing finished transfers to make it crystal clear that the timeout and abort logic is the same everywhere.
2014-05-16save up the failures for the end in the argc == 0.Ted Unangst
help ok espie
2014-05-16There is no need to remember which usb(4) device is the child of an USBMartin Pieuchot
host controller because autoconf(9) already does it.
2014-05-16a few changes for new code to match local styleTed Unangst
2014-05-16checksum mode can use magic pubkey finder tooTed Unangst
2014-05-16Zero out grp before re-using it (new ones are already cleared byTodd C. Miller
calloc). We only reuse grp when there is an unresolvable host. Fixes a bug where if a host in a netgroup is unresolvable then entire netgroup is ignore. OK krw@
2014-05-16rework -C (perfect candidate for using hash tables, really):Marc Espie
insert files we want to check into a hash, parse SHA256 message on the fly, delete entries whose checksum match, then display entries that failed. This completely avoids allocating temporary storage for file names and checksums and removes the quadratic match (argv[i] vs line[n]). okay tedu@
2014-05-16Include openssl/evp.h for OPENSSL_add_all_algorithms_noconf().Joel Sing
From Brent Cook.
2014-05-16Fix various issues that result in compiler warnings.Joel Sing
Prompted by a diff from Brent Cook.
2014-05-16When OPENSSL_LOAD_CONF was added it ended up with more #if 0 code,Joel Sing
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@
2014-05-16use $2b in the bcrypt example, ok teduStuart Henderson
2014-05-16It seems that there is new and old revision of CH340.sasano
Previous uchcom(4) driver targeted old one, and new one could not work because of uchcom_set_line_control() broke the value of UCHCOM_REG_LCR1(0x18). To support new CH340, uchcom_set_line_control() and uchcom_reset_chip() have been overhauled. Current uchcom(4) does not change the value of UCHCOM_REG_LCR1 register, it means even/odd parity mode is no longer supported with old CH340. ok by mpi@
2014-05-16regenDavid Coppa
2014-05-16Add Alcatel OneTouch L100VDavid Coppa
Diff from Lukasz Ratajski ok sthen@
2014-05-16Make the df calculations of available space the same as that done inKenneth R Westerback
ffs_statfs(). In 1998, with /usr/src/sys/ufs/ffs/ffs_vfsops.c r1.16, mickey@ improved the calculation of available blocks in ffs_statfs(). Yesterday guenther@ noticed that this fix had not been applied to the same calculation being done by df(8) when run against raw devices. Which meant different values were displayed depending on which device/file system you gave to df. ok otto@
2014-05-16improve logging messages and style; requested by and ok reykMike Belopuhov
2014-05-16Do not put any link-layer address on the per-ifp lists or on the RB-Martin Pieuchot
Tree. Since interfaces only support one link-layer address accessible via the if_sadl member, there's no need to have it elsewhere. This improves various address lookups because the first element of the list, the link- layer address, won't necessarily be discarded. Finally remove the empty netmask associated to every link-layer address. This hack was needed to (ab)use the address & netmask comparison code to do a strcmp() on the interface name embedded in the sdl_data field. ok henning@, claudio@
2014-05-15Fix memory leaks upon failure.Miod Vallat
ok beck@
2014-05-15Replace ASN1_GENERALIZEDTIME_adj(), ASN1_UTCTIME_adj() andMiod Vallat
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.
2014-05-15more for STANDARDS: unsupported lists (noted by guenther) and env vars;Jason McIntyre
2014-05-15remove unused variableCharles Longeau
ok espie@
2014-05-15No longer make pqueue.h a public (and installed) header file. Replace itsMiod Vallat
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@
2014-05-15flesh out STANDARDS; ok guentherJason McIntyre
2014-05-15use <> for tables;Jason McIntyre
original report from creamy; diff from Frank Brodbeck, tweaked
2014-05-15Get pqueue.h from the libssl sources rather than relying upon it beingMiod Vallat
installed.
2014-05-15- typo in commentCharles Longeau
- memset() is not needed after a calloc() - add missing DBG_ENTER; - use SEEK_SET instead of 0 in an lseek() call ok krw@
2014-05-15More KNF.Joel Sing
2014-05-15Add additional chacha20-poly1305 test vectors.Joel Sing
Thanks to Piotr Sikora for providing a reference to the source.
2014-05-15Use C99 initialisers for the AEAD struct.Joel Sing
2014-05-15Add chacha20-poly1305 test vector to regress.Joel Sing
2014-05-15KNF.Joel Sing
2014-05-15Add a ChaCha20-Poly1305 AEAD EVP implementation to libcrypto, from AdamJoel Sing
Langley's Chromium OpenSSL patches. ok miod@
2014-05-15KNF.Joel Sing
2014-05-15KNF.Joel Sing
2014-05-15KNF.Joel Sing
2014-05-15KNF.Joel Sing
2014-05-15KNF.Joel Sing
2014-05-15Add a regress test for AEAD, based on Adam Langley's code.Joel Sing
2014-05-15Add an AEAD EVP interface to libcrypto, along with AES-GCM AEADJoel Sing
implementations. This largely pulls in Adam Langley's AEAD patches from Chromium's OpenSSL. ok miod@
2014-05-15fix the band-aid error.Marc Espie
tedu was bitten by the RETARDED interface in sha2.h (who names string LENGTH things that are actually buffer SIZES) ? make -C mode work again. okay beck@
2014-05-15Stop being a dummy... presumably these are left overs from pedantic modeJoel Sing
that were not wrapped with #if PEDANTIC. ok miod@
2008-09-06import of OpenSSL 0.9.8hDamien Miller
2014-05-15regenMartin Pieuchot
2014-05-15XHCI -> xHCIMartin Pieuchot
2014-05-15Use a more appropriate malloc(9) type than M_TEMP for the keymap memoryMartin Pieuchot
since it is only freed when your keyboard is detached.