Skip to main content

sslpsk fork for pymobiledevice3

Project description

sslpsk3

PyPI version

This module adds TLS-PSK support to the Python 2.7 and 3.x ssl package. Simply use

sslpsk3.wrap_socket(sock, psk=b'...', ...)

instead of

ssl.wrap_socket(sock, ...)

Installation

pip install sslpsk3

pip builds from source for Linux and Mac OSX, so a C compiler, the Python development headers, and the openSSL development headers are required. For Microsoft Windows, pre-built binaries are available so there are no such prerequisites.

Usage

sslpsk3.wrap_socket(...) is a drop-in replacement for ssl.wrap_socket(...) that supports two additional arguments, psk and hint.

psk sets the preshared key and, optionally, the identity for a client connection. hint sets the identity hint for a server connection and is optional.

For client connections, psk can be one of four things:

  1. Just the preshared key.
sslpsk3.wrap_socket(sock, psk=b'mypsk')
  1. A tuple of the preshared key and client identity.
sslpsk3.wrap_socket(sock, psk=(b'mypsk', b'myidentity'))
  1. A function mapping the server identity hint to the preshared key.
PSK_FOR = {b'server1' : b'abcdef',
           b'server2' : b'123456'}

sslpsk3.wrap_socket(sock, psk=lambda hint: PSK_FOR[hint])
  1. A function mapping the server identity hint to a tuple of the preshared key and client identity.
PSK_FOR = {b'server1' : b'abcdef',
           b'server2' : b'123456'}

ID_FOR  = {b'server1' : b'clientA',
           b'server2' : b'clientB'}

sslpsk3.wrap_socket(sock, psk=lambda hint: (PSK_FOR[hint], ID_FOR[hint]))

For server connections, psk can be one of two things:

  1. Just the preshared key.
sslpsk3.wrap_socket(sock, server_side=True, psk=b'mypsk')
  1. A function mapping the client identity to the preshared key.
PSK_FOR = {b'clientA' : b'abcdef',
           b'clientB' : b'123456'}

sslpsk3.wrap_socket(sock, server_side=True, psk=lambda identity: PSK_FOR[identity])

Additionally for server connections, the optional server identity hint is specified using the hint argument.

sslpsk3.wrap_socket(sock, server_side=True, hint=b'myidentity', psk=b'mypsk')

If hint is not specified, None, or the empty string, the identity hint will not be sent to the client.

Example Server

from __future__ import print_function
import socket
import ssl
import sslpsk_pmd3

PSKS = {'client1': 'abcdef',
        'client2': '123456'}


def server(host, port):
  tcp_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  tcp_sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
  tcp_sock.bind((host, port))
  tcp_sock.listen(1)

  sock, _ = tcp_sock.accept()
  ssl_sock = sslpsk_pmd3.wrap_socket(sock,
                                     server_side=True,
                                     ssl_version=ssl.PROTOCOL_TLSv1,
                                     ciphers='ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH',
                                     psk=lambda identity: PSKS[identity],
                                     hint=b'server1')

  msg = ssl_sock.recv(4).decode()
  print('Server received: %s' % (msg))
  msg = "pong"
  ssl_sock.sendall(msg.encode())

  ssl_sock.shutdown(socket.SHUT_RDWR)
  ssl_sock.close()


def main():
  host = '127.0.0.1'
  port = 6000
  server(host, port)


if __name__ == '__main__':
  main()

Example Client

from __future__ import print_function
import socket
import ssl
import sslpsk_pmd3

PSKS = {b'server1': b'abcdef',
        b'server2': b'uvwxyz'}


def client(host, port, psk):
  tcp_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  tcp_socket.connect((host, port))

  ssl_sock = sslpsk_pmd3.wrap_socket(tcp_socket,
                                     ssl_version=ssl.PROTOCOL_TLSv1,
                                     ciphers='ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH',
                                     psk=lambda hint: (PSKS[hint], b'client1'))

  msg = "ping"
  ssl_sock.sendall(msg.encode())
  msg = ssl_sock.recv(4).decode()
  print('Client received: %s' % (msg))

  ssl_sock.shutdown(socket.SHUT_RDWR)
  ssl_sock.close()


def main():
  host = '127.0.0.1'
  port = 6000
  client(host, port, PSKS)


if __name__ == '__main__':
  main()

Changelog

  • 0.1.0 (July 31, 2017)
    • initial release
  • 1.0.0 (August 2, 2017)
    • include tests in pip distribution
    • add support for Windows
  • 1.0.1 (August 11, 2020)
    • OpenSSL 1.1.1
    • Fix with _sslobj
    • Build from source in Windows with error description, when OpenSSL files are not present

Acknowledgments

Fork of drbild/sslpsk.

The main approach was borrowed from webgravel/common-ssl.

Contributing

Please submit bugs, questions, suggestions, or (ideally) contributions as issues and pull requests on GitHub.

Maintainers

Sidney Kuyateh

License

Copyright 2017 David R. Bild, 2020 Sidney Kuyateh

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License from the LICENSE.txt file or at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sslpsk-pmd3-1.0.0.tar.gz (18.0 kB view details)

Uploaded Source

Built Distributions

sslpsk_pmd3-1.0.0-cp312-cp312-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.12Windows x86-64

sslpsk_pmd3-1.0.0-cp312-cp312-macosx_10_9_universal2.whl (25.7 kB view details)

Uploaded CPython 3.12macOS 10.9+ universal2 (ARM64, x86-64)

sslpsk_pmd3-1.0.0-cp311-cp311-macosx_10_9_universal2.whl (25.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file sslpsk-pmd3-1.0.0.tar.gz.

File metadata

  • Download URL: sslpsk-pmd3-1.0.0.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for sslpsk-pmd3-1.0.0.tar.gz
Algorithm Hash digest
SHA256 46f87c271bba52864b8257d606b80d49cc8f2b4b0989d5fae7ca9adb3c88dbbf
MD5 6c9f1bcdaca940d3bbff11f4cec9c86e
BLAKE2b-256 2b80dabeff299df90652d069b5d0e94657e743b36b279e736acb9dcb4a35228c

See more details on using hashes here.

File details

Details for the file sslpsk_pmd3-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sslpsk_pmd3-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6b1dcf17316605ef08168b2fc7488575e404d7bfef313c04b3a474a58d80ca5f
MD5 38b52b4a50d386a58ffbd183d028a081
BLAKE2b-256 2fe923f575e6d961e350c42074482537d68bd6fc6cf11f87c7252e0906567020

See more details on using hashes here.

File details

Details for the file sslpsk_pmd3-1.0.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sslpsk_pmd3-1.0.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 04c384e89d2ecff62f647ba435aad2f61752e2da61d3f09a0c09bc36ff20cb01
MD5 6860f058f47e611a5ecd649eccd82132
BLAKE2b-256 c43e4a4d739c6b79c8a22eb0591a9bea7e41bd0900bbeb4aa0ed8eceade1cd75

See more details on using hashes here.

File details

Details for the file sslpsk_pmd3-1.0.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sslpsk_pmd3-1.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8106c7a75e97362f20524e89ac642f1d5543931d10f6583923022a2db42c1a25
MD5 bd9330961757447ace9d04c8461013e5
BLAKE2b-256 0feeb08286e8c48b46d474073029bb04f1e2e9c16561fb5d56b440eba9529a44

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page