Skip to main content

Custom implementation of TLS protocol (TLSv1.0 to TLSv1.3) with similar API to Python's 'ssl'

Project description

simple-tls

A custom, lightweight implementation of the TLS protocol (supporting TLS 1.0 through TLS 1.3) built entirely in Python.

simple-tls is designed to be a seamless, drop-in replacement for Python's built-in ssl module, allowing you to utilize advanced TLS features without having to rewrite your existing socket logic.

✨ Features

  • Broad Protocol Support: Fully implements TLS 1.0, 1.1, 1.2, and 1.3.
  • Familiar API: Mirrors the native Python ssl module API for effortless integration.
  • Encrypted Client Hello (ECH): Modern privacy features to keep hostnames hidden during the handshake.
  • Early Data (0-RTT): Faster connection resumptions for performance-critical applications.
  • Customizable Handshakes: Deep-level control over the TLS handshake process that the standard library doesn't expose.

📦 Installation

Requirements:

  • Python 3.10 or higher
  • cryptography 42.0.0 or higher

You can install the package via pip:

pip install simple-tls

🚀 Quick Start (Manual)

Because simple-tls maps directly to the standard library's interface, upgrading your existing sockets to use custom TLS is as easy as changing your import statement.

Here is a complete example of connecting securely to a website using simple-tls:

import socket
from simple_tls import pyssl

hostname = 'www.python.org'
port = 443

# 1. Create a secure default context using simple-tls
# This automatically loads the system's trusted CA certificates
context = pyssl.SSLContext()

# 2. Create a standard TCP socket
with socket.create_connection((hostname, port)) as sock:
    # 3. Wrap the socket to secure it
    # server_hostname is required for SNI (Server Name Indication) and hostname verification
    with context.wrap_socket(sock, server_hostname=hostname) as ssock:
        print(f"Connected to {hostname} securely!")
        print(f"TLS Version: {ssock.version()}")
        print(f"Cipher Suite: {ssock.cipher()}\n")
        
        # 4. Send encrypted data (A simple HTTP GET request)
        request = f"GET / HTTP/1.1\r\nHost: {hostname}\r\nConnection: close\r\n\r\n"
        ssock.sendall(request.encode('utf-8'))
        
        # 5. Receive the encrypted response
        response = b""
        while True:
            data = ssock.recv(1024)
            if not data:
                break
            response += data
            
        print("Received headers:")
        print(response.split(b"\r\n\r\n")[0].decode('utf-8'))

📄 License

This project is licensed under the MIT 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

simple_tls-0.1.0-cp314-cp314-win_amd64.whl (189.4 kB view details)

Uploaded CPython 3.14Windows x86-64

simple_tls-0.1.0-cp314-cp314-win32.whl (187.0 kB view details)

Uploaded CPython 3.14Windows x86

simple_tls-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simple_tls-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (278.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

simple_tls-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (278.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simple_tls-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simple_tls-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (279.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simple_tls-0.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (277.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

simple_tls-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (258.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simple_tls-0.1.0-cp314-cp314-macosx_10_13_x86_64.whl (235.9 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

simple_tls-0.1.0-cp313-cp313-win_amd64.whl (188.2 kB view details)

Uploaded CPython 3.13Windows x86-64

simple_tls-0.1.0-cp313-cp313-win32.whl (186.0 kB view details)

Uploaded CPython 3.13Windows x86

simple_tls-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simple_tls-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (278.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

simple_tls-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (278.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simple_tls-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simple_tls-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (279.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simple_tls-0.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (277.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

simple_tls-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (258.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simple_tls-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (235.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

simple_tls-0.1.0-cp312-cp312-win_amd64.whl (188.2 kB view details)

Uploaded CPython 3.12Windows x86-64

simple_tls-0.1.0-cp312-cp312-win32.whl (186.0 kB view details)

Uploaded CPython 3.12Windows x86

simple_tls-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (286.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simple_tls-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (278.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

simple_tls-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (277.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simple_tls-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (286.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simple_tls-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (279.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simple_tls-0.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (278.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

simple_tls-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (258.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simple_tls-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (235.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

simple_tls-0.1.0-cp311-cp311-win_amd64.whl (188.2 kB view details)

Uploaded CPython 3.11Windows x86-64

simple_tls-0.1.0-cp311-cp311-win32.whl (186.0 kB view details)

Uploaded CPython 3.11Windows x86

simple_tls-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simple_tls-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (278.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

simple_tls-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (277.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simple_tls-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simple_tls-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (279.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simple_tls-0.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (277.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

simple_tls-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (258.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simple_tls-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (230.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simple_tls-0.1.0-cp310-cp310-win_amd64.whl (188.2 kB view details)

Uploaded CPython 3.10Windows x86-64

simple_tls-0.1.0-cp310-cp310-win32.whl (186.0 kB view details)

Uploaded CPython 3.10Windows x86

simple_tls-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simple_tls-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (277.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

simple_tls-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (276.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simple_tls-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simple_tls-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (278.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simple_tls-0.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (277.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

simple_tls-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (258.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

simple_tls-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (230.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file simple_tls-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 189.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4e9a3184106d4097a8c4b2e10ab8b071b0ada7e08bffb7db0f0a1c82fe3deb65
MD5 4430ef8d5b40a967c0e5dc6c15ba6ca7
BLAKE2b-256 3538439eede67ca977c9e6a4642bb18678f10356ec48730b41bfbcfa946d2b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 187.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 11f29f8dfc42fc24870488995ca9bbde0d14385e0a0dcd43d018afe81e053b7e
MD5 414b78dfae301de076d33253848b0ed3
BLAKE2b-256 4569b1ec210de63d0145656415b76a235c24b70284c3ef393a4e1610054a95a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-win32.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec8b43f91ec7c9e5a8c5bb534e25c6cdc56460cebc14ed619221d567abb19265
MD5 2c1954f0a63d04ad5af7124887b18be5
BLAKE2b-256 bee5a4227ffddc814d0d83605aea75d3c54204024a1fb97bc47e0434b00ab0cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4553325d5f846899988a292bc3e3ace704740f91faa6aac6b3359b4af122671
MD5 6841856baf6b7da739ae3327a1ae0c7c
BLAKE2b-256 406105323eabb3e3036b9bf64d2be3964b72b5b0ef3064586cdb917d08433e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b464a97d3e89e97bffa40a0453b830ea57550ec711c3e8fb68432f1c2851637e
MD5 be975eff56be3f4c07ca5d5c318b76f5
BLAKE2b-256 44c6779718ebd5a815e276a3b44ababb9037c25a6e8522fd405bb01ecfdee565

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4b857466519d787e8140c0605b7901b6592221b7b1eb5ebbab7e091b46ae3a1
MD5 c5e49b7454dd55a11eacaa78495401e1
BLAKE2b-256 01a0b766411a7eba1da0ab9cb31c9a324014f9c43080fc4e98d224ec5b646ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c40ea257606f04d094a4a35c5d8f7a21412cdd131686d2e1130f9b5e8eb9799d
MD5 5dfbac07f57e9830e8a151dd77f4ae63
BLAKE2b-256 feb760178e1b747cd1e2dccb0ecd847b1a7981f19ecf9decdfbefa06bf55999b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 782012458bee405652f3769b549e7763d536b2067fe7cf83203fb16b1135cc2d
MD5 a78d8bd5f9b999e6b99b723eb6e8908e
BLAKE2b-256 502ec54f7e29c8c220d0593d957be6228013aaa800c3f3ca02cd8dc1ac0a26a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37b7fbaad56b9731b4792731b415a9f47b58e765b4c666750a50c2a1725c0144
MD5 cb3fc1de91efba7e6c050cc0f4eb91a8
BLAKE2b-256 6357e37b32147abd0fff6aaa80cb19e6aba3efe846f51dd6acacf74078214950

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f704e1248fe82b8116486fb1ec4b6c8a8b169984468fc052aae730f73178c8d
MD5 248c4d08ed006089cdb86517a970f44c
BLAKE2b-256 1b6c43587a67d5457625b3ca0cba2b77f57c70d48c43d429d4e9a687d9aa2901

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 188.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2b85ff72a51577f8e31ec07eaeaaac19ebdb67c72b61dff6813436f40e8d101f
MD5 d044a32035908dea8642a44a0c642992
BLAKE2b-256 920b0639e1a9888990974381bc8de4dd5727474605bddec749528c8b9ad59e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 186.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b5b832ef736af12d0bf6466ddca1fb5fac414cf603fd6f83d70b6959f763625f
MD5 935306e18e9272b83004976729a4ecdc
BLAKE2b-256 a1424132d8507d8d2243d66f013399834d527ff07dfd4e8b228fd113a4e05686

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-win32.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22cf00564786e8c93300c66b573640dd3d31d0dce388c80c8cded7070c9e2992
MD5 20f117c20f8027b8ef776bfda4ba4153
BLAKE2b-256 36f8d5c66bcdd122b2fc4abbd4bb8696695fb68403dfe075ba246369650d0e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab8e4ee785398d40cd93c70d915a332f03a66be70f2bd091120c02ac834f7547
MD5 ccce89a1dfe620e9e0e95657ecd95e4c
BLAKE2b-256 51ebeb18631005b9405d9532faeda09f0c63cd826e98bf1114586c4317401aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc0affca7ca2a010db681682217d5f4784cf559a2e826eee5f3a4d717315b23c
MD5 517c3858193c2b840b9b71e3cde0938f
BLAKE2b-256 f3c8c3ec3a257a871030651af95f472149612c71df286a51d8a66e60032a7a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d278c2bbef42b409f9a707fbc8ee05563a3efdb97f17c47c1cbb3e1ddbae745e
MD5 05dc85d9fb4b05afd34af4c015bb2c9b
BLAKE2b-256 2477d9035f63ae5f4220af1d4c8f83484b42267e804c08b93c3b5b8da988e161

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 165a1abcd22e70ec3533d947fc7bfbd704c380172a0470de4c1596737c8765c6
MD5 62ca6253ad32273e704733a7ecd5e9c6
BLAKE2b-256 73a7be16a0c853b1df70cb4c9a7d9a0a6f1332ab5362d0053b8448da51650144

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 19270efb754944fde7bbd202bcee52032cc57d96f6c2a436a33c63d930c6e2d6
MD5 e18d6ad33579f78f8fce012c4db4c6dc
BLAKE2b-256 b78c75da29d102cd7ddf1ce7474a8620cebd81232a6513f339a33bdfd553d64d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 076d23e6068c04d2a4c24a4b47e5ca564b15aa21ce68dc0597f145aaa14e6698
MD5 449385fe8d2e65bc176fb1dd07b454e1
BLAKE2b-256 39316b37ce2eed1facd2446a4686343bbcd330ead5af6b9cbcf69bb3623aa410

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 276a0a29593aaf139997234c66484aba542a94f887615a6e8fd52d06c550b2cd
MD5 fd2d16c5c66cc9451650e9613dc9b5bd
BLAKE2b-256 6816f00971dc97411cba7de3d66f240832fb0d0b6c4a1128d188ab77409530bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 188.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 979ff644c3624ac16a737b3b7aab52ea153efbcb3bc845ca97ee729cdb43a8c6
MD5 b8fc9b54a75c1151bfe24389aba3ff65
BLAKE2b-256 ed8534c8e84ef7baa7cd659382ea0a97bf87ffa31511d28f40d18309a123581a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 186.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 543612bbef9b91da04c937661104b63a8c0421aa9bad70fdd4fb2bd9289828fa
MD5 d3a5d6202bd3078b2acd354b77af58a8
BLAKE2b-256 da19b16c4f79285b9e2b1653cb6f0175b4ce8afb7ee1b8729979347019583fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-win32.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9607e235db1e8ce498d7312029a8780a85a77f0fe0a706ce0ada64ec0301aae
MD5 28f8bedcb41bca86dbb3186816cbe3a5
BLAKE2b-256 66c2ed0beb3cc58941a8d1c044fec00e2a28a4dbf144b2a74f18ac74960cb20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5ed4349fc3aec5582ce587ef387d8f9e9e3abbc343bf598a5ed48d0dc27c54b
MD5 3fc4de0b8966a002782ba4f1416ee448
BLAKE2b-256 b8a23ad3fe85a53dbf400c9c91e4327c3c7b8d0d88eabd0e745f6a955969230c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 738f70efa7a59dce2ad6c2a7249af87dce11f5280f7ac707dfb44f1151daebda
MD5 e94451394f7cc2b3cdd5a9a8b8fcd10c
BLAKE2b-256 a0c40b8f4078b3dfefda59cdbe6a9bde9e0f52de85046711d02baff354b01752

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd9d99ce858a01fd6eab54ade50cca259db1923166f00460d4c0dfec21b9f4b8
MD5 a8b6b5a5753e8a0ddea89c19a54c26ff
BLAKE2b-256 88968c8ca9dddcfb6e1fa4faa2204f8bf02887193d2ccccca8e13e425d317ec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64bdc65c0215f1491ab0ac3dc11211ac9777a80e962b46f1cd54bbf59760498d
MD5 1bb8b3760d737e99e549843e5fa00428
BLAKE2b-256 1b046809676535f048e5019199b55a15c177ee3e56be1335a591c70198fb32dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ac2f0f091ef1791e0c200e348ebd2c58edd22da4145289d73b5b0675fc575104
MD5 a05189dd8765c19cae70b9bac2cc2978
BLAKE2b-256 ee1cceed3d0e49e51e773173da0819b2caa737acdf65ef40fdef7a4389074bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 945e1b3ebe9efc0a83cb5417d7fbac0aa02c0e71d5bd30ac269ee9d9277a1931
MD5 e84a69165c80fb22b4b831dcf8363a5d
BLAKE2b-256 2b0bed88147b5e2a911a71ac32f9989df6093ed053040de1512dc75761a1393a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f717648e54fb5d038554e0480852ff32f2d9147fe88fca041f88d560c0a298d
MD5 baae859d852e56d2a52ba7e06f93d173
BLAKE2b-256 24d2a37ad023008f5d4d723a223da996175e4480d3541a2210ac392ef67d74da

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 188.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 723f781d40a04645858429dabe4d029d092fab78617532a894bfaa41cc71c0e9
MD5 8b1cece433938aa23243f9b97eb7ce9d
BLAKE2b-256 f4ee48fa47e49abca78050cf6aa9c901d9d6f696d8894eede7577e9594f070d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 186.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0a700c075a45e02b32051b243a35e00169b81648696ace0f4a2f05948ecdd4d6
MD5 1afc1d35860a91a253ed65ec76d32b5f
BLAKE2b-256 8aca57cbfbc5b4d4a25f87f4f4a0d586261f7e614b425ec78c6540f101c6a406

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-win32.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d82dce49712605d1c783771d92ab20b07178e84ee2e3b423f5c7b5dc2ffabb44
MD5 f3afaec2ec548ec5dc4653c2a70f26b6
BLAKE2b-256 72e5c5d48852aaab0b1d5abd999577250b2f40a58645210ab262806d9f327323

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa8cf49b68898ad67ea585fb22df9ea485f2c53eb54a7b627955341e4c87895c
MD5 7b5be55910146096fc7f4a9cef78757a
BLAKE2b-256 feb108ae5d47e858ddfdbe6e8d0a7a967e39474737b3ae79e3705f57dedbc83d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef83434196d20e846df5ed31b43c54fc7a539046b2aeb31c0383721b9d709d6f
MD5 6824a0dfb979c648a9b92bcf852119f5
BLAKE2b-256 bea92258bff9f16aa5379f5a55dcdee78f9b4b8fc9f5da7d57e04279dfc1b1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6dbcda41c13529697616d12c0dfbff83adaee673d70e1177b452fa1085ab801
MD5 ae0726d53e61b47739f1292c35141510
BLAKE2b-256 b8c2a8a9563f9d860371af1772327420f368c1855fe1fad2fa26d5214b2344b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fde6ad37af738cfc3d7974290032670b45c49c1364aead47150679c06a799283
MD5 3b280d770313dd69d44ba10222f92abc
BLAKE2b-256 8e9383116b9b7ddac6d18a59ec4e1211d89bf6bae6dfcadc9e100627d4ae28e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 efc703ab8cc2884891ace02e25a7767b1862542c6078ee690c534bd3f69e66ec
MD5 6b2bfdaa3ca9170ab58f40f18e407ead
BLAKE2b-256 4a3d8dd4c3f35715f6500034e7d66ea4c15a8127db886f6710c0d5f403f226fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f45b0e0f70190662a01dd0ff3a66f482a8c5ec877400f420af65e1c4842f2ba
MD5 da11208786080aa7421528bdd4076b85
BLAKE2b-256 87196a068b51a754537d2e1a34d80df51a05b703f02846aa44ba43d9852f8e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55c9e3a2b504f705b3f0fba92a179c5590041805d38365ae4f75ecd0db17d24a
MD5 072d184e3f1aaa1521cb1e8f7fabe10a
BLAKE2b-256 a2f1a64f89165d1e884361c8d694f46420e0b1ab53aedb8bfe4596461589d938

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 188.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76e445f745df912c442eb2b807171be2f56ddc64bb4cea96ba68c948b8e7df5d
MD5 9f13de0414310f2813786969896194a2
BLAKE2b-256 a1ee6e9f4d207a2a37393e48d4ccc75f0ebbc803cd71d77d427704dd83cda21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: simple_tls-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 186.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e2bc76274cd7b295547ab329e7586b0115b5c83befebd7de8b119db0e61b8190
MD5 b7932b2e1916f321271f5f44208e19b6
BLAKE2b-256 1b911b4280b8f4e223a5db7c0ebdd0d1ce0d6e4c6f8bbd18fc4413a0c22ec26d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-win32.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 864678dccf4b30050156b69c0ae133402b67b426ab7199cda07b9738a2b7b137
MD5 f3837b8ce162d109a2f0aeb9f8b7c2d7
BLAKE2b-256 0163a472698c40be4b171ce75e4f17d63ad29c330f3b50483f1952d0e7ed11ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35d9756d32a8151f29e8807626a6d1b3998ddcf8f0281838f4c9ea254506d3ea
MD5 e25f8ccd50fe4181876fd44e442e0185
BLAKE2b-256 66411879794aec0ad962a3f775b51de8917343fa9d822ac99b8980dbfb835f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2812c71b22b15e5d6797fa6aecf4f57ac99525c71843f1fc4c233e2babf974d9
MD5 ec379215c5c48f2263372959c52b82bc
BLAKE2b-256 9bbef348be2b59d738bb920fe1e0cdb37c6b19a751ade610d3dee3899b0b0c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb14829ac5ff4eba4aee94311838662231db1b674ee86a831e4294e4474a0560
MD5 a4316c51cef601ff6b47fea0ba674d82
BLAKE2b-256 e2594cd1de9bc9e00346b3ca9934c78104ae79e547a6a18906022a755464bf72

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6578b0f50f899ceeffb0960708441ba045c2f7bd9811c18c432cf11edc72389
MD5 5d57bceb20fd80ee4e7141186490f213
BLAKE2b-256 21120c1d4f2301df821c7f66439a8ed9ed0ee4fe5585a2697ef6a779c9084915

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ecedb997864a61b544c193f8295a3929253061430814b3e035356796d4df6cda
MD5 28c808bf9ed7162f31d6d0d71037472d
BLAKE2b-256 33ce6dec3b23ac2819740edecad790be8b5c3ff1e99effb350ab4cb71d2a3cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04b02055ea5a5b79c2ee3ab6d81c253eeae952ddea7e169c2ceb0f874429b0a0
MD5 c329a71a4e3215b2704c20d9acd3e9e6
BLAKE2b-256 d9e0c286573a7b92db86d7762d916f1649dc2e7e3415bb695596d8d03aa31cd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_tls-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simple_tls-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 127814d44971c670fa4f6c902cb61c2259efd3bd8a160d76e3a52beae736e201
MD5 511ae24c80becbe2827eed9d6547ca65
BLAKE2b-256 ecc6bde72b425bab23d24b8b6234ca834b1531a06ae5d1cf532d4a4e3929394d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_tls-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi-publish.yml on asphyxiaxx/simple-tls

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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