Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/GnuTLSSetup.txt')
-rw-r--r--docs/GnuTLSSetup.txt18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/GnuTLSSetup.txt b/docs/GnuTLSSetup.txt
deleted file mode 100644
index 0112c51e..00000000
--- a/docs/GnuTLSSetup.txt
+++ /dev/null
@@ -1,18 +0,0 @@
------------------------------------------------------------------------
-Instructions for setting up a GnuTLS server for use with DTLSClientTest
------------------------------------------------------------------------
-
-- Download GnuTLS from http://www.gnutls.org/download.html
-
-- Unpack to folder and add ${GNUTLS_HOME}/bin to PATH
-
-- Make a working folder somewhere and copy the x509-*.pem from this package to there.
-
-- Go to working folder and start GnuTLS server (defaults to port 5556):
-TLS:
- gnutls-serv --http --x509cafile x509-ca.pem --x509keyfile x509-server-key.pem --x509certfile x509-server.pem
-DTLS:
- gnutls-serv --echo --udp --mtu 1500 --x509cafile x509-ca.pem --x509keyfile x509-server-key.pem --x509certfile x509-server.pem
-
-- Further information in GnuTLS documentation at http://www.gnutls.org/documentation.html
- see "7.2. Invoking gnutls-serv", section titled "gnutls-serv Examples" if you want to generate your own keys and certificates.