From 4e60fa0d5ed44e28512a3d4897aadaf67e2419fe Mon Sep 17 00:00:00 2001 From: David Hook Date: Thu, 30 May 2013 14:32:16 +1000 Subject: [PATCH] initial migration of test data --- docs/GnuTLSSetup.txt | 18 ------------------ docs/OpenSSLSetup.txt | 16 ---------------- 2 files changed, 34 deletions(-) delete mode 100644 docs/GnuTLSSetup.txt delete mode 100644 docs/OpenSSLSetup.txt diff --git a/docs/GnuTLSSetup.txt b/docs/GnuTLSSetup.txt deleted file mode 100644 index 0112c51e4b..0000000000 --- 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. diff --git a/docs/OpenSSLSetup.txt b/docs/OpenSSLSetup.txt deleted file mode 100644 index 4524264ab0..0000000000 --- a/docs/OpenSSLSetup.txt +++ /dev/null @@ -1,16 +0,0 @@ -------------------------------------------------------------------------- -Instructions for setting up an OpenSSL server for use with DTLSClientTest -------------------------------------------------------------------------- - -- Download and Install OpenSSL (exercise for the reader) - -- Make a working folder somewhere and copy the x509-*.pem from this package to there. - -- Go to working folder and start OpenSSL server: -TLS: - openssl s_server -accept 5556 -debug -msg -state -tls1_1 -www -CAfile x509-ca.pem -cert x509-server.pem -key x509-server-key.pem -DTLS: - openssl s_server -accept 5556 -mtu 1500 -debug -msg -state -dtls1 -CAfile x509-ca.pem -cert x509-server.pem -key x509-server-key.pem - -NOTE: This is mainly of use to test the handshake. There doesn't appear to be an 'echo server' option with DTLS, but it will print - to stdout anything you send it, and lines you type into stdin (at the server) will be sent to the client.