You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
Python
20 lines
439 B
Python
#!/usr/bin/python
|
|
|
|
################################
|
|
# Configuration starts here
|
|
|
|
allowed_certs = '/home/sven/ssl/allowed'
|
|
|
|
# Configuration ends here
|
|
################################
|
|
|
|
import socket, ssl, pprint, time
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
ssl_sock = ssl.wrap_socket(s, cert_reqs=ssl.CERT_REQUIRED, ca_certs=allowed_certs)
|
|
ssl_sock.connect(('localhost', 9151))
|
|
|
|
ssl_sock.write('test data')
|
|
|
|
ssl_sock.close()
|