summaryrefslogtreecommitdiff
path: root/wocky/wocky-openssl.c
AgeCommit message (Expand)AuthorFilesLines
2011-04-07Save const returns in const variablesSjoerd Simons1-2/+2
2011-03-10openssl: stop using OPAQUE_TYPE_ prefixes here tooJonny Lamb1-2/+2
2010-12-20Add assertions to ensure async resources are freedNicolas Dufresne1-0/+1
2010-11-10OpenSSL: improve debugging output for ignored errorsWill Thompson1-0/+5
2010-11-10OpenSSL: don't erroneously truncate X509_NAMEs.Will Thompson1-1/+1
2010-11-10OpenSSL: add debug output to check_peer_name()Will Thompson1-1/+8
2010-10-20OpenSSL: report hostname mismatch over other errors.Will Thompson1-19/+8
2010-10-20OpenSSL: clarify anonymous certificate handlingWill Thompson1-11/+15
2010-10-14Fixe last bad comparision in OpenSSL codeNicolas Dufresne1-1/+1
2010-10-14Fix boolean comparision in OpenSSL codeNicolas Dufresne1-2/+2
2010-10-13Merge branch 'leak-fix'Nicolas Dufresne1-10/+17
2010-10-13More style fix when doing if on pointersNicolas Dufresne1-9/+9
2010-10-13Keep GCancellable alive during the async callsNicolas Dufresne1-2/+9
2010-10-08OpenSSL: add a missing 'break'.Will Thompson1-0/+1
2010-09-30OpenSSL: include error domain in debug, tooWill Thompson1-1/+2
2010-09-30OpenSSL: fix a debug format string.Will Thompson1-4/+5
2010-09-22Explain why ignore_warning is there in the write_op implementationVivek Dasmohapatra1-2/+2
2010-09-21Don't retry indefinitely on failed OpenSSL writesVivek Dasmohapatra1-9/+31
2010-09-02Not having a CRL for a cert that advertises one is not necessarily an errorVivek Dasmohapatra1-1/+6
2010-07-22Set the cert type to X509 when using OpenSSLCosimo Cecchi1-0/+3
2010-07-22Add a way to get certificates from the session.Cosimo Cecchi1-0/+43
2010-06-16Use a better workaround for GTalk server SSL bugsWill Thompson1-5/+22
2010-05-04Document deliberate fall-throughs.Will Thompson1-0/+6
2010-05-04openssl: die if we can't create BIOsWill Thompson1-2/+2
2010-05-03Cry a little if CRYPTO_malloc_init() failsWill Thompson1-1/+6
2010-05-03Check return value of SSL_CTX_set_default_verify_paths()Will Thompson1-1/+4
2010-03-23wocky-openssl: in error_to_string, remove casts made unnecessary by Ole Andre...Simon McVittie1-2/+2
2010-03-23Fix error_to_string() crashOle André Vadla Ravnås1-1/+1
2010-03-23Replace isXXX() with g_ascii_isXXX() to improve portabilityOle André Vadla Ravnås1-1/+1
2010-03-23Replace CA/CRL stat logic with g_file_test to improve portabilityOle André Vadla Ravnås1-4/+3
2010-03-23Fix OpenSSL include issue on WindowsOle André Vadla Ravnås1-0/+5
2010-03-23Fix warnings related to DEBUG() usage without argumentsOle André Vadla Ravnås1-13/+13
2010-03-23In the files touched by Ole Andre's patch, put headers in the preferred orderSimon McVittie1-3/+4
2010-03-23Don't include unistd.h unless availableOle André Vadla Ravnås1-0/+6
2010-01-21Turn off OpenSSL SSLv2 supprt (this allows deflate compression to be negotiated)Vivek Dasmohapatra1-1/+2
2009-12-22Rename verification level variable from 'flags'Will Thompson1-4/+4
2009-12-22Correctly fall back to VERIFY_STRICT.Will Thompson1-1/+1
2009-12-21Use a simple enum for the tls verification levelSjoerd Simons1-2/+4
2009-12-18Use G_G[S]SIZE_FORMAT for g[s]size in printfWill Thompson1-8/+11
2009-12-18Fix out-of-tree compilation with OpenSSLWill Thompson1-1/+1
2009-12-17Remove wocky-openssl.h, no headers use the USING_OPENSSL #define (or config.h)Vivek Dasmohapatra1-1/+3
2009-12-08Elide comments which no longer apply as we no longer use SSL_ pending/peek.Vivek Dasmohapatra1-11/+1
2009-12-08Fix an infinite io pseudo-read case in the OpenSSL backend.Vivek Dasmohapatra1-1/+5
2009-12-07Tweak result error/gssize setting logic slightly.Vivek Dasmohapatra1-9/+7
2009-12-07Unnecessary error == NULL test removed, use g_set_error.Vivek Dasmohapatra1-5/+2
2009-12-07There are, in fact, no errors we want to ignore/retry in _ready_ready.Vivek Dasmohapatra1-14/+3
2009-12-07Move code from _result_boolean to _try_operation, reduce logic duplication.Vivek Dasmohapatra1-14/+7
2009-12-07Detect renegotiation attempts when trying SSL_peek as well as SSL_read.Vivek Dasmohapatra1-32/+54
2009-12-07Don't reimplement g_simple_async_result_is_validSjoerd Simons1-9/+2
2009-12-07If there is data to read directly make sure we still return asynchronouslySjoerd Simons1-22/+30