Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename libressl to libtls to avoid confusion and to make it easier to | jsing | 2014-10-31 | 1 | -72/+0 |
| | | | | | | distinguish between LibreSSL (the project) and libressl (the library). Discussed with many. | ||||
* | allow disabling hostname and cert verification separately. | tedu | 2014-10-03 | 1 | -2/+3 |
| | | | | | | if you're careful, cert only verification can be useful. always enable both though, to avoid accidentally leaving one off. ok jsing | ||||
* | Add an option that allows the enabled SSL protocols to be explicitly | jsing | 2014-09-29 | 1 | -1/+3 |
| | | | | | | | | configured. Discussed with several. ok bcook@ | ||||
* | Add the API function ressl_config_set_ecdhcurve(config, name) to set a | reyk | 2014-08-27 | 1 | -1/+2 |
| | | | | | | non-standard ECDH curve by name or to disable it by passing NULL. OK jsing@ | ||||
* | Add support for loading the public/private key from memory, rather than | jsing | 2014-08-06 | 1 | -1/+5 |
| | | | | directly from file. | ||||
* | Add $OpenBSD$ tags. | jsing | 2014-08-05 | 1 | -0/+1 |
| | |||||
* | A ressl server needs different configuration from a ressl client - provide | jsing | 2014-08-04 | 1 | -0/+1 |
| | | | | | a specific server configuration function and call this from ressl_configure. | ||||
* | Provide a function that returns a server connection context. | jsing | 2014-08-04 | 1 | -0/+2 |
| | |||||
* | Provide a utility function for loading a private/public keypair. | jsing | 2014-08-04 | 1 | -0/+1 |
| | |||||
* | Add configuration handling for certificate and key files. | jsing | 2014-07-13 | 1 | -1/+2 |
| | |||||
* | Tabs, not spaces. | jsing | 2014-07-13 | 1 | -12/+12 |
| | |||||
* | Rename the context allocation from ressl_new to ressl_client, which makes | jsing | 2014-07-13 | 1 | -0/+6 |
| | | | | | it completely obvious what the context is for. Ensure client functions are used on client contexts. | ||||
* | Initial version of libressl - a library that provides a clean, simple, | jsing | 2014-07-12 | 1 | -0/+52 |
consistent and secure-by-default API for SSL clients (and soon servers). This is a long way from complete and the interface will likely change substantially - committing now so that further work can happen in the tree. Initiated by tedu@ and inspired by discussions with tedu@, beck@ and other developers. |