summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bss_fd.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use C99 initializers for the various FOO_METHOD structs. More readable, andmiod2014-04-271-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@
* unistd.h for protos where neededderaadt2014-04-181-0/+1
|
* Mostly gut e_os.h:deraadt2014-04-171-1/+0
| | | | | | | | USE_SOCKETS is unrelated to using sockets, but just pulls in .h files. It makes every file buy a kitchen sink, because 11 files forgot to. EXIT() is really exit(), a gentle surprise but... OPENSSL_EXIT() is really just return(), because noone compiles the openssl command non-monolithic anymore
* some KNF cleanup following the scriptderaadt2014-04-171-4/+4
|
* - Why do we hide from the OpenSSL police, dad?miod2014-04-161-20/+8
| | | | | | | | - Because they're not like us, son. They use macros to wrap stdio routines, for an undocumented (OPENSSL_USE_APPLINK) use case, which only serves to obfuscate the code. ok tedu@
* Clean up non-fatal error handling - we know which error numbers we havejsing2014-04-161-32/+0
| | | | | | defined. ok miod@ beck@
* Toss a `unifdef -U OPENSSL_SYS_WINDOWS' bomb into crypto/bio.jsing2014-04-151-6/+0
| | | | ok miod@
* First pass at applying KNF to the OpenSSL code, which almost makes itjsing2014-04-151-109/+112
| | | | | readable. This pass is whitespace only and can readily be verified using tr and md5.
* Remove various horrible socket syscall wrappers, especially SHUTDOWN*deraadt2014-04-131-3/+3
| | | | | | which did shutdown + close, all nasty and surprising. Use the raw syscalls that everyone knows the behaviour of. ok beck matthew
* resolve conflicts, fix local changesdjm2010-10-011-1/+26
|
* resolve conflictsdjm2008-09-061-9/+21
|
* OpenSSL 0.9.7 stable 2002 05 08 mergebeck2002-05-151-3/+223
|
* Import of SSLeay-0.9.0b with RSA and IDEA stubbed + OpenBSD buildryker1998-10-051-0/+62
functionality for shared libs. Note that routines such as sslv2_init and friends that use RSA will not work due to lack of RSA in this library. Needs documentation and help from ports for easy upgrade to full functionality where legally possible.