Home
last modified time | relevance | path

Searched full:openssl (Results 1 – 22 of 22) sorted by relevance

/civetweb-2.7.6/resources/cert/
Dmake_certs.sh6 openssl genrsa -des3 -out client.key 2048
7 openssl req -new -key client.key -out client.csr
11 openssl rsa -in client.key.orig -out client.key
13 openssl x509 -req -days 3650 -in client.csr -signkey client.key -out client.crt
18 openssl pkcs12 -export -inkey client.key -in client.pem -name ClientName -out client.pfx
23 openssl genrsa -des3 -out server.key 2048
24 openssl req -new -key server.key -out server.csr
28 openssl rsa -in server.key.orig -out server.key
30 openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
35 openssl pkcs12 -export -inkey server.key -in server.pem -name ServerName -out server.pfx
[all …]
Dmake_certs.bat36 c:\OpenSSL-Win32\bin\openssl.exe genrsa -des3 -out server.key 4096
38 c:\OpenSSL-Win32\bin\openssl.exe req -sha256 -new -key server.key -out server.csr -utf8
42 c:\OpenSSL-Win32\bin\openssl.exe rsa -in server.key.orig -out server.key
51 c:\OpenSSL-Win32\bin\openssl.exe x509 -req -days 365 -extensions v3_ca -extfile server.ext.txt -in …
/civetweb-2.7.6/docs/
DOpenSSL.md1 Adding OpenSSL Support
4 Civetweb supports *HTTPS* connections using the OpenSSL transport layer
5 security (TLS) library. OpenSSL is a free, open source library (see
6 ….openssl.org/). While there are other TLS libraries beside OpenSSL (like gnuTLS and wolfSSL), new …
12 - Install OpenSSL on your system. There are OpenSSL install packages for all
15 required OpenSSL libraries, if a HTTPS certificate has been configured.
42 OpenSSL provides a command line interface, that can be used to create the
49 openssl genrsa -des3 -out server.key 1024
51 openssl req -new -key server.key -out server.csr
55 openssl rsa -in server.key.orig -out server.key
[all …]
DyaSSL.md9 …. All current versions of CivetWeb are tested using [OpenSSL](OpenSSL.md). CivetWeb uses the OpenS…
10 provides an OpenSSL compatibility layer. However, when new TLS features are added to CivetWeb, it i…
DREADME.md42 - [OpenSSL.md](OpenSSL.md) - Adding HTTPS (SSL/TLS) support using OpenSSL.
DBuilding.md23 …rnatively, you might wish to use OpenSSL. See [OpenSSL.md](https://github.com/civetweb/civetweb/bl…
169 | `OPENSSL_API_1_1` | Use OpenSSL V1.1.x interface |
DUserManual.md568 A description how to create a certificate can be found in doc/OpenSSL.md
581 See [this entry](https://www.openssl.org/docs/manmaster/apps/ciphers.html) in
582 OpenSSL documentation for full list of options and additional examples.
585 Loads default trusted certificates locations set at openssl compile time.
598 More recent versions of OpenSSL include support for TLS version 1.3.
1000 - Embedding with OpenSSL on Windows might fail because of calling convention.
/civetweb-2.7.6/examples/multidomain/
DREADME.md7 echo | openssl s_client -showcerts -servername default-domain -connect localhost:443 2>/dev/null |
9 echo | openssl s_client -showcerts -servername localhost -connect localhost:443 2>/dev/null | opens…
/civetweb-2.7.6/
Dappveyor.yml303 # Get OpenSSL
305 # OpenSSL should already be installed, according to
306 # - http://help.appveyor.com/discussions/questions/1132-openssl-installation-issues
309 - cmd: set PATH=%PATH%;C:\OpenSSL-Win32;C:\OpenSSL-Win64
310 - dir C:\OpenSSL-Win32
311 - dir C:\OpenSSL-Win64
DCMakeLists.txt222 # OpenSSL 1.1 API
223 option(CIVETWEB_SSL_OPENSSL_API_1_1 "Use the OpenSSL 1.1 API" OFF)
224 message(STATUS "Compile for OpenSSL 1.1 API - ${CIVETWEB_SSL_OPENSSL_API_1_1}")
609 set(CPACK_PACKAGE_DEPENDS "openssl")
DRELEASE_NOTES.md11 - Disable SSL renegotiation for new OpenSSL version
21 - Replace some uses of deprecated Linux and OpenSSL API functions
69 ### Objectives: *OpenSSL 1.1 support, add server statistics and diagnostic data*
114 - OpenSSL 1.1 support
DREADME.md80 - [docs/OpenSSL.md](https://github.com/civetweb/civetweb/blob/master/docs/OpenSSL.md) - Adding HTTP…
D.travis.yml18 - openssl
62 …${BUILD_TYPE}" == "OSX_OPENSSL_1_1" ]]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install openssl@1.1 ;fi
412 OPENSSL_ROOT_DIR="/usr/local/opt/openssl@1.1"
Dconanfile.py44 self.requires("OpenSSL/1.0.2q@conan/stable")
/civetweb-2.7.6/src/
Dwolfssl_extras.inl6 #include <openssl/../internal.h>
19 * For OpenSSL 0.9.7 and later if *out is NULL memory will be allocated for a
DCMakeLists.txt48 # We need to link OpenSSL if not dynamically loading
56 find_package(OpenSSL)
58 message(STATUS "OpenSSL include directory: ${OPENSSL_INCLUDE_DIR}")
Dcivetweb.c1764 #include <openssl/bn.h>
1765 #include <openssl/conf.h>
1766 #include <openssl/crypto.h>
1767 #include <openssl/dh.h>
1768 #include <openssl/engine.h>
1769 #include <openssl/err.h>
1770 #include <openssl/opensslv.h>
1771 #include <openssl/pem.h>
1772 #include <openssl/ssl.h>
1773 #include <openssl/tls1.h>
[all …]
/civetweb-2.7.6/examples/embedded_c/
Dembedded_c.c864 #include "openssl/dh.h"
865 #include "openssl/ec.h"
866 #include "openssl/ecdsa.h"
867 #include "openssl/evp.h"
868 #include "openssl/ssl.h"
/civetweb-2.7.6/ci/travis/
Dinstall_rocks.sh7 # lua-curl depends on a libcurl development package (i.e. libcurl4-openssl-dev)
/civetweb-2.7.6/contrib/buildroot/
Dcivetweb.mk32 CIVETWEB_DEPENDENCIES += openssl
/civetweb-2.7.6/unittest/
Dpublic_server.c194 (void)system("cmd /c copy C:\\OpenSSL-Win64\\libeay32.dll libeay32.dll"); in START_TEST()
195 (void)system("cmd /c copy C:\\OpenSSL-Win64\\libssl32.dll libssl32.dll"); in START_TEST()
196 (void)system("cmd /c copy C:\\OpenSSL-Win64\\ssleay32.dll ssleay32.dll"); in START_TEST()
197 (void)system("cmd /c copy C:\\OpenSSL-Win64\\libeay32.dll libeay64.dll"); in START_TEST()
198 (void)system("cmd /c copy C:\\OpenSSL-Win64\\libssl32.dll libssl64.dll"); in START_TEST()
199 (void)system("cmd /c copy C:\\OpenSSL-Win64\\ssleay32.dll ssleay64.dll"); in START_TEST()
201 (void)system("cmd /c copy C:\\OpenSSL-Win32\\libeay32.dll libeay32.dll"); in START_TEST()
202 (void)system("cmd /c copy C:\\OpenSSL-Win32\\libssl32.dll libssl32.dll"); in START_TEST()
203 (void)system("cmd /c copy C:\\OpenSSL-Win32\\ssleay32.dll ssleay32.dll"); in START_TEST()
4743 /* dont run on Travis OSX worker with OpenSSL 1.0 */ in START_TEST()
/civetweb-2.7.6/include/
Dcivetweb.h112 * Note: The TLS libraries (like OpenSSL) is initialized