summaryrefslogtreecommitdiff
path: root/src/lib/libressl/ressl_internal.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename libressl to libtls to avoid confusion and to make it easier tojsing2014-10-311-72/+0
| | | | | | distinguish between LibreSSL (the project) and libressl (the library). Discussed with many.
* allow disabling hostname and cert verification separately.tedu2014-10-031-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 explicitlyjsing2014-09-291-1/+3
| | | | | | | | configured. Discussed with several. ok bcook@
* Add the API function ressl_config_set_ecdhcurve(config, name) to set areyk2014-08-271-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 thanjsing2014-08-061-1/+5
| | | | directly from file.
* Add $OpenBSD$ tags.jsing2014-08-051-0/+1
|
* A ressl server needs different configuration from a ressl client - providejsing2014-08-041-0/+1
| | | | | a specific server configuration function and call this from ressl_configure.
* Provide a function that returns a server connection context.jsing2014-08-041-0/+2
|
* Provide a utility function for loading a private/public keypair.jsing2014-08-041-0/+1
|
* Add configuration handling for certificate and key files.jsing2014-07-131-1/+2
|
* Tabs, not spaces.jsing2014-07-131-12/+12
|
* Rename the context allocation from ressl_new to ressl_client, which makesjsing2014-07-131-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,jsing2014-07-121-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.