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 | -158/+0 |
| | | | | | | distinguish between LibreSSL (the project) and libressl (the library). Discussed with many. | ||||
* | Set SSL_OP_SINGLE_ECDH_USE before calling SSL_CTX_set_tmp_ecdh() - this | jsing | 2014-10-15 | 1 | -2/+2 |
| | | | | avoids generating an EC key pair that will never be used. | ||||
* | Allow "auto" to be specified as an ECDH curve name and make this the | jsing | 2014-10-03 | 1 | -2/+4 |
| | | | | | | default. This enables automatic handling of ephemeral EC keys. Discussed with reyk@ and tedu@ | ||||
* | Move cipher configuration handling to the shared SSL configuration function | jsing | 2014-09-29 | 1 | -9/+1 |
| | | | | so that applies to both the ressl client and server. | ||||
* | Add an option that allows the enabled SSL protocols to be explicitly | jsing | 2014-09-29 | 1 | -2/+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 | -6/+11 |
| | | | | | | non-standard ECDH curve by name or to disable it by passing NULL. OK jsing@ | ||||
* | Add $OpenBSD$ tags. | jsing | 2014-08-05 | 1 | -0/+1 |
| | |||||
* | Implement ressl_accept_socket, which allocates a new server connection | jsing | 2014-08-04 | 1 | -2/+43 |
| | | | | | context (if necessary) and handles the TLS/SSL handshake over the given socket. | ||||
* | Return -1 on error (not 1). | jsing | 2014-08-04 | 1 | -3/+3 |
| | |||||
* | A ressl server needs different configuration from a ressl client - provide | jsing | 2014-08-04 | 1 | -0/+37 |
| | | | | | 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/+13 |
| | |||||
* | Add stubs for the proposed server API. | jsing | 2014-07-13 | 1 | -0/+66 |