| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix mangled function signatures. | jsing | 2016-05-09 | 1 | -5/+5 |
* | spelling fix; | jmc | 2016-04-28 | 1 | -2/+2 |
* | Crank majors for lib{crypto,ssl,tls} due to symbol removals, symbol | jsing | 2016-04-28 | 1 | -1/+1 |
* | Factor our the keypair handling in libtls. This results in more readable | jsing | 2016-04-28 | 7 | -52/+164 |
* | Rework the error handling in libtls so that we can associate errors with | jsing | 2016-04-28 | 5 | -28/+90 |
* | no more outlen; from remco | jmc | 2016-04-24 | 1 | -5/+3 |
* | typos; | jmc | 2016-04-24 | 1 | -3/+3 |
* | for some time now mandoc has not required MLINKS to function | jmc | 2016-03-30 | 1 | -52/+1 |
* | Call BIO_sock_init() from tls_init() to ensure sockets are enabled on Windows. | bcook | 2016-01-18 | 1 | -1/+4 |
* | bump the major for libcrypto/ssl/tls for a CRYPTO_chacha_20 ABI change | bcook | 2015-12-09 | 1 | -2/+2 |
* | update some client/server info; from jan klemkow | jmc | 2015-11-09 | 1 | -5/+5 |
* | bump minors after adding EVP_aead_chacha20_poly1305_ietf() | reyk | 2015-11-02 | 1 | -1/+1 |
* | Put tls_config_verify_client_optional() in the right place. | jsing | 2015-10-16 | 1 | -6/+6 |
* | Fix tpyo. | jsing | 2015-10-16 | 1 | -3/+3 |
* | fix a gotcha in the connect refactoring, that could result in dropping | deraadt | 2015-10-09 | 1 | -1/+5 |
* | If getaddrinfo() succeeds, then don't try look ups with other flags, even | guenther | 2015-10-08 | 1 | -41/+39 |
* | trailing whitespace; | jmc | 2015-10-08 | 1 | -6/+6 |
* | Add tls_peer_cert_notbefore and tls_peer_cert_notafter to expose peer certifi... | beck | 2015-10-07 | 6 | -9/+98 |
* | Allow us to get cipher and version even if there is not a peer certificate. | beck | 2015-10-07 | 2 | -15/+21 |
* | include <sys/types.h> for ssize_t | bcook | 2015-10-01 | 1 | -1/+3 |
* | Instead of declaring a union in multiple places, move it to tls_internal.h. | jsing | 2015-09-29 | 3 | -15/+14 |
* | clean some ugly intendation warts | deraadt | 2015-09-29 | 5 | -12/+21 |
* | Explicit NULL checks and style(9) tweaks. | jsing | 2015-09-28 | 1 | -7/+7 |
* | tweak previous; | jmc | 2015-09-14 | 1 | -2/+2 |
* | Provide tls_config_insecure_noverifytime() in order to be able to disable | jsing | 2015-09-14 | 6 | -6/+29 |
* | Remove useless quoting from .Fo and .Fn function names, to prevent | schwarze | 2015-09-14 | 1 | -4/+4 |
* | some conn_version and conn_cipher bits; | jmc | 2015-09-14 | 2 | -9/+10 |
* | Expose EOF without close-notify via tls_close(). | jsing | 2015-09-14 | 2 | -6/+14 |
* | Return an error if tls_handshake() or tls_close() is called on a context | jsing | 2015-09-14 | 1 | -2/+13 |
* | add missing function return types | schwarze | 2015-09-14 | 1 | -2/+3 |
* | Crank major version due to removal of SHA-0 and MD4 from libcrypto. | doug | 2015-09-13 | 1 | -2/+2 |
* | work around the stupid semantics of SSL_read and SSL_write to make sure | beck | 2015-09-13 | 1 | -3/+3 |
* | Don't leak conninfo - spotted by marko kreen. | beck | 2015-09-13 | 1 | -2/+3 |
* | Mechanical minor bump to follow libcrypto. | miod | 2015-09-13 | 1 | -1/+1 |
* | add visibility of ciper and connection version strings | beck | 2015-09-13 | 4 | -6/+56 |
* | Move connection info into it's own private structure allocated and filled in | beck | 2015-09-12 | 7 | -120/+208 |
* | Ensure that we clear the libssl error stack before we make a function call | jsing | 2015-09-12 | 3 | -5/+12 |
* | Put tls_peer_cert* functions in the same place. | jsing | 2015-09-12 | 1 | -6/+6 |
* | typo | deraadt | 2015-09-11 | 1 | -2/+2 |
* | more for NAME; | jmc | 2015-09-11 | 1 | -1/+4 |
* | more cleanup; | jmc | 2015-09-11 | 1 | -16/+15 |
* | update NAME; various cleanup | jmc | 2015-09-11 | 1 | -20/+20 |
* | document tls_get_peer_subject, tls_get_peer_issuer, and tls_get_peer_hash | beck | 2015-09-11 | 2 | -3/+58 |
* | != -> == that I broke while bikeshedding | beck | 2015-09-11 | 1 | -2/+2 |
* | Do not match a wildcard against a name with no host part. | beck | 2015-09-11 | 1 | -1/+4 |
* | add tls_peer functions for checking names and issuers of peer certificates. | beck | 2015-09-11 | 7 | -13/+95 |
* | Provide tls_peer_cert_hash() which returns a hash of the raw certificate | jsing | 2015-09-11 | 3 | -2/+92 |
* | Store a reference to the peer certificate (if any) upon completion of the | jsing | 2015-09-11 | 2 | -2/+8 |
* | specify what is permitted as an argument to tls_config_set_ciphers() | beck | 2015-09-11 | 1 | -1/+11 |
* | actually set return value to 0 on success. | beck | 2015-09-11 | 1 | -1/+2 |