summaryrefslogtreecommitdiff
path: root/gnutls-1.1.9/examples/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'gnutls-1.1.9/examples/client.py')
-rwxr-xr-xgnutls-1.1.9/examples/client.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/gnutls-1.1.9/examples/client.py b/gnutls-1.1.9/examples/client.py
deleted file mode 100755
index c6e4208..0000000
--- a/gnutls-1.1.9/examples/client.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-
-"""Synchronous client using python-gnutls"""
-
-import sys
-import os
-import socket
-
-from gnutls.crypto import *
-from gnutls.connection import *
-
-script_path = os.path.realpath(os.path.dirname(sys.argv[0]))
-certs_path = os.path.join(script_path, 'certs')
-
-cert = X509Certificate(open(certs_path + '/valid.crt').read())
-key = X509PrivateKey(open(certs_path + '/valid.key').read())
-ca = X509Certificate(open(certs_path + '/ca.pem').read())
-crl = X509CRL(open(certs_path + '/crl.pem').read())
-cred = X509Credentials(cert, key)
-
-sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-session = ClientSession(sock, cred)
-
-session.connect(('localhost', 10000))
-session.handshake()
-session.send("test\r\n")
-buf = session.recv(1024)
-print 'Received: ', buf.rstrip()
-session.bye()
-session.shutdown()
-session.close()
-