Skip to main content

Fast and Portable Cryptography Extension Library for Pyrogram

Project description

TgCrypto

[!NOTE] The implementations of the algorithms presented in this repository are to be considered for educational purposes only.

Fast and Portable Cryptography Extension Library for Pyrogram

TgCrypto is a Cryptography Library written in C as a Python extension. It is designed to be portable, fast, easy to install and use. TgCrypto is intended for Pyrogram and implements the cryptographic algorithms Telegram requires, namely:

Requirements

  • Python 3.7 or higher.

Installation

$ pip3 install -U tgcrypto

API

TgCrypto API consists of these six methods:

def ige256_encrypt(data: bytes, key: bytes, iv: bytes) -> bytes: ...
def ige256_decrypt(data: bytes, key: bytes, iv: bytes) -> bytes: ...

def ctr256_encrypt(data: bytes, key: bytes, iv: bytes, state: bytes) -> bytes: ...
def ctr256_decrypt(data: bytes, key: bytes, iv: bytes, state: bytes) -> bytes: ...

def cbc256_encrypt(data: bytes, key: bytes, iv: bytes) -> bytes: ...
def cbc256_decrypt(data: bytes, key: bytes, iv: bytes) -> bytes: ...

Usage

IGE Mode

Note: Data must be padded to match a multiple of the block size (16 bytes).

import os

import tgcrypto

data = os.urandom(10 * 1024 * 1024 + 7)  # 10 MB of random data + 7 bytes to show padding
key = os.urandom(32)  # Random Key
iv = os.urandom(32)  # Random IV

# Pad with zeroes: -7 % 16 = 9
data += bytes(-len(data) % 16)

ige_encrypted = tgcrypto.ige256_encrypt(data, key, iv)
ige_decrypted = tgcrypto.ige256_decrypt(ige_encrypted, key, iv)

print(data == ige_decrypted)  # True

CTR Mode (single chunk)

import os

import tgcrypto

data = os.urandom(10 * 1024 * 1024)  # 10 MB of random data

key = os.urandom(32)  # Random Key

enc_iv = bytearray(os.urandom(16))  # Random IV
dec_iv = enc_iv.copy()  # Keep a copy for decryption

ctr_encrypted = tgcrypto.ctr256_encrypt(data, key, enc_iv, bytes(1))
ctr_decrypted = tgcrypto.ctr256_decrypt(ctr_encrypted, key, dec_iv, bytes(1))

print(data == ctr_decrypted)  # True

CTR Mode (stream)

import os
from io import BytesIO

import tgcrypto

data = BytesIO(os.urandom(10 * 1024 * 1024))  # 10 MB of random data

key = os.urandom(32)  # Random Key

enc_iv = bytearray(os.urandom(16))  # Random IV
dec_iv = enc_iv.copy()  # Keep a copy for decryption

enc_state = bytes(1)  # Encryption state, starts from 0
dec_state = bytes(1)  # Decryption state, starts from 0

encrypted_data = BytesIO()  # Encrypted data buffer
decrypted_data = BytesIO()  # Decrypted data buffer

while True:
    chunk = data.read(1024)

    if not chunk:
        break

    # Write 1K encrypted bytes into the encrypted data buffer
    encrypted_data.write(tgcrypto.ctr256_encrypt(chunk, key, enc_iv, enc_state))

# Reset position. We need to read it now
encrypted_data.seek(0)

while True:
    chunk = encrypted_data.read(1024)

    if not chunk:
        break

    # Write 1K decrypted bytes into the decrypted data buffer
    decrypted_data.write(tgcrypto.ctr256_decrypt(chunk, key, dec_iv, dec_state))

print(data.getvalue() == decrypted_data.getvalue())  # True

CBC Mode

Note: Data must be padded to match a multiple of the block size (16 bytes).

import os

import tgcrypto

data = os.urandom(10 * 1024 * 1024 + 7)  # 10 MB of random data + 7 bytes to show padding
key = os.urandom(32)  # Random Key

enc_iv = bytearray(os.urandom(16))  # Random IV
dec_iv = enc_iv.copy()  # Keep a copy for decryption

# Pad with zeroes: -7 % 16 = 9
data += bytes(-len(data) % 16)

cbc_encrypted = tgcrypto.cbc256_encrypt(data, key, enc_iv)
cbc_decrypted = tgcrypto.cbc256_decrypt(cbc_encrypted, key, dec_iv)

print(data == cbc_decrypted)  # True

Testing

  1. Clone this repository: git clone https://github.com/pyrogram/tgcrypto.
  2. Enter the directory: cd tgcrypto.
  3. Install tox: pip3 install tox
  4. Run tests: tox.

License

LGPLv3+ © 2017-present Dan

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

PyTgCrypto-1.2.11-pp311-pypy311_pp73-win_amd64.whl (37.0 kB view details)

Uploaded PyPy Windows x86-64

PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl (34.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

PyTgCrypto-1.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (34.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

PyTgCrypto-1.2.11-pp310-pypy310_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPy Windows x86-64

PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl (34.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

PyTgCrypto-1.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (34.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

PyTgCrypto-1.2.11-pp39-pypy39_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPy Windows x86-64

PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl (34.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

PyTgCrypto-1.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (34.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

PyTgCrypto-1.2.11-pp38-pypy38_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPy Windows x86-64

PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl (34.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

PyTgCrypto-1.2.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (34.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

PyTgCrypto-1.2.11-pp37-pypy37_pp73-win_amd64.whl (36.9 kB view details)

Uploaded PyPy Windows x86-64

PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (37.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (34.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

PyTgCrypto-1.2.11-cp313-cp313-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

PyTgCrypto-1.2.11-cp313-cp313-win32.whl (36.1 kB view details)

Uploaded CPython 3.13 Windows x86

PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_x86_64.whl (50.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_s390x.whl (56.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl (56.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_i686.whl (49.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_armv7l.whl (54.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_aarch64.whl (52.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (55.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (58.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (62.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (53.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (50.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp313-cp313-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

PyTgCrypto-1.2.11-cp313-cp313-macosx_10_13_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

PyTgCrypto-1.2.11-cp313-cp313-macosx_10_13_universal2.whl (50.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

PyTgCrypto-1.2.11-cp312-cp312-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

PyTgCrypto-1.2.11-cp312-cp312-win32.whl (36.1 kB view details)

Uploaded CPython 3.12 Windows x86

PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_x86_64.whl (50.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_s390x.whl (55.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl (56.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_i686.whl (48.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_armv7l.whl (54.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_aarch64.whl (52.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (55.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (58.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (62.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (53.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (50.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp312-cp312-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

PyTgCrypto-1.2.11-cp312-cp312-macosx_10_13_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

PyTgCrypto-1.2.11-cp312-cp312-macosx_10_13_universal2.whl (50.2 kB view details)

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

PyTgCrypto-1.2.11-cp311-cp311-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

PyTgCrypto-1.2.11-cp311-cp311-win32.whl (36.1 kB view details)

Uploaded CPython 3.11 Windows x86

PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_x86_64.whl (51.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl (56.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_i686.whl (49.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_armv7l.whl (54.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_aarch64.whl (52.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (56.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (58.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (63.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (53.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (51.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp311-cp311-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

PyTgCrypto-1.2.11-cp311-cp311-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

PyTgCrypto-1.2.11-cp311-cp311-macosx_10_9_universal2.whl (50.2 kB view details)

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

PyTgCrypto-1.2.11-cp310-cp310-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

PyTgCrypto-1.2.11-cp310-cp310-win32.whl (36.1 kB view details)

Uploaded CPython 3.10 Windows x86

PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_x86_64.whl (50.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_s390x.whl (55.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl (55.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_i686.whl (48.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_armv7l.whl (53.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_aarch64.whl (51.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (55.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (58.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (62.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (50.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp310-cp310-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

PyTgCrypto-1.2.11-cp310-cp310-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

PyTgCrypto-1.2.11-cp310-cp310-macosx_10_9_universal2.whl (50.2 kB view details)

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

PyTgCrypto-1.2.11-cp39-cp39-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

PyTgCrypto-1.2.11-cp39-cp39-win32.whl (36.1 kB view details)

Uploaded CPython 3.9 Windows x86

PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_x86_64.whl (50.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_s390x.whl (55.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl (55.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_i686.whl (48.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_armv7l.whl (53.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_aarch64.whl (51.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (55.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (57.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (61.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (52.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (50.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp39-cp39-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

PyTgCrypto-1.2.11-cp39-cp39-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

PyTgCrypto-1.2.11-cp39-cp39-macosx_10_9_universal2.whl (50.2 kB view details)

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

PyTgCrypto-1.2.11-cp38-cp38-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

PyTgCrypto-1.2.11-cp38-cp38-win32.whl (36.1 kB view details)

Uploaded CPython 3.8 Windows x86

PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_x86_64.whl (50.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_s390x.whl (55.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_ppc64le.whl (55.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_i686.whl (48.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_armv7l.whl (53.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_aarch64.whl (51.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (55.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (58.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (62.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (53.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (50.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp38-cp38-macosx_11_0_arm64.whl (34.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

PyTgCrypto-1.2.11-cp38-cp38-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

PyTgCrypto-1.2.11-cp38-cp38-macosx_10_9_universal2.whl (50.2 kB view details)

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

PyTgCrypto-1.2.11-cp37-cp37m-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

PyTgCrypto-1.2.11-cp37-cp37m-win32.whl (36.2 kB view details)

Uploaded CPython 3.7m Windows x86

PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_x86_64.whl (51.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_s390x.whl (56.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ s390x

PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_ppc64le.whl (56.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ppc64le

PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_i686.whl (49.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_armv7l.whl (54.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_aarch64.whl (52.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (52.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (56.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (59.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (63.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l manylinux: glibc 2.31+ ARMv7l

PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (52.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

PyTgCrypto-1.2.11-cp37-cp37m-macosx_10_9_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file PyTgCrypto-1.2.11-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2f58be00af6933fd2f7868a306db642e4ffe07bdd0dbc185005fb21a7fab05ec
MD5 dfbac660713add4bbb11efa11de48f58
BLAKE2b-256 e690893e6af18946a2bc08574a0050249bb988298e578e6d91c8616826ab887f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e73f1990f8f160a1ebd6c9108f96bf4a07ae48983259d12acac2b0ad59b2ab6
MD5 ee51496709fa56c1ce8228bb983d3aaa
BLAKE2b-256 97eee70f2190b1fb69b7118c51c728a881a127b624e30084ed8281b6d73dde8c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a6735b335f6804b22e2ee3be52dac987909192793f635ebc8abf53458125941
MD5 19717a3072392d5c800dde816f9c9eb6
BLAKE2b-256 3bf83480d8794c8f00623f6eee1f2783d67579b90e895059cbe7fd1434a55175

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2da9f3ab86f3d0c548ebf17b334efaff8514b5e72eacc01e03482c0dc726bce
MD5 b3731bd014d5bfd6d5925279c5fb9abf
BLAKE2b-256 46c3c3c98c0b3b3eef0a47b12081cc54b67a3f49dc1cee8e2889e6f2738a42ae

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b81c417121cb4246cfabd371393ad5e848d21fc665ad514b73162fa898224a3a
MD5 1e13435420e7d6ae4f9a35b409f8c491
BLAKE2b-256 82e32ff713cfbc93e56f182924698d9640c53e244496f9319da324d5cf0a18bc

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2c7860683e9d206b5115fe74a699093bbaef9724f02226b01b80be62749bcaf1
MD5 b8b7bc8c4bafb22c116b028ed92bd39c
BLAKE2b-256 8afbf4f04803cba4e81c3b18f76385b914ebb65241d6d1f8b6735cf50507b8c6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9646efc095d5bfe8cbb9968b7a7737ebf7de682938a4c1c89c1ef628b5014f5d
MD5 4dedc9c816db131be9eb11b2afc14312
BLAKE2b-256 826b3b10ece7bf2cc2f4645d672baaaa47260dcd7bce9eee57f4848ed6995729

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d1dab04fb9493fb36140c3cd471e946ed1b85cce571787442b038f2b91099e5
MD5 7d23aba024b75a967362a129ec8c01db
BLAKE2b-256 2760451ec7eca44b8f805042f5ee564a9bd72563900fa0beec29fe696572c89e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5dd7143f11b6e71d00566f00a84934357c2f45d774464bd155f9027d5c1622a
MD5 3bcadc54276bc78295dc0fa94a631747
BLAKE2b-256 fbcb1f2bc7b6011728ab3337404732458f3cc5ce257b62dcb68267e9bc03485b

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3308644f445fca5bc357a246ce740b274a2d68cc4f75faa1e80e0da66d02e881
MD5 21b61356bf79e80cb6a9896b25e7ffc6
BLAKE2b-256 6b6c652b0dea9990b7a399d910743721a5a21bd1c9b9231c63f63c126127308f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0b28cbc1581258f8f955e937e3a498af02c25ba9730213cac5bc6292d546418
MD5 a95b3c81bf2e13b0e78bde708b928eba
BLAKE2b-256 10a902fd589fb760fe7e1bceb5b5f3f76cb94d24c92f297be111cce03af11bf4

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f414d4e0b39f3e853945d12277db6544a708813fa3b06089ae4c9b8e018280a6
MD5 8823c00ccd1bb2258fc8e190e7fbd091
BLAKE2b-256 702c212ad03dc591c047920b851981fece70129eebbf733d0081f98f0a4392a2

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b0eabd5e16321abdcade58082ce1cafdcecd9a9078d8956281c1415f5c7e825e
MD5 40c486b44d996f165bb8771756143e9d
BLAKE2b-256 5cdb55eccfa66ef9989b044a9ccf8bb3df26d8cd0935878d416340684551d93f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 171aa33d5343200cdfdea9f8792df543cabe323e91dc73cf786d4f4af47d0e80
MD5 616d257690f2974dd95f96a0073c450a
BLAKE2b-256 aba0965f8b236cb7302dbaa04616240d0092f02c09875c6fe6576f88835ce9be

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea0ab31251f5ae5f3f49b7073ce784daf6e42993de4c20b27afc7ceddec011b2
MD5 25c13cc0f753920ebc67f5fb1094717e
BLAKE2b-256 f1e7eb43ae3c9923408acf82adb60d1451691f62c174f2360a7458e04b881b4d

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3133235e8bb387ba4245d461bf8a07366f4c691619bfc959f7c9ef3f192abcc3
MD5 a168ddd6d185ce9537bb6a5d17d2cd08
BLAKE2b-256 b79ae6a1bc9de05fbe30dae3c47e9c4307f4d3ef02e0d6e7534f27efd863fdba

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0e9120323ef6c81fe66aa34a823f6b5d4b9d98a7445666584b3539790a600b3
MD5 b1399db61e650c39f45f6be463f32700
BLAKE2b-256 4f6dbd582ffb0cc71322ecabcbf1cbdedfdf6db1e2eb8dd34b00e9b552050e52

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1e24b3af2e15e802794f1d3a45cf404512051f3ddeedd2dc3dce2741b7bfe10c
MD5 89d85084dd67a1d8f296c50c8616a672
BLAKE2b-256 330e5885fa3dfc5e45614b229dbd1a4c3f5b2de47709899020864bca7a072760

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 602e1c4fca6b511047389e084f49c9d68c86a40f6d5a133a0858ba1215894f57
MD5 35c1d8430c6c2ccbd7c1d44ee32402ce
BLAKE2b-256 ad4637700e9da5c5ed8cb806a96e7a9212142951adc4df5a52b07fc7b4bd0ad2

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c8e34d27bf45a119f1088c9c544ad4631a7825d8e7ec8d7e66de1395c9eebce
MD5 e8edcc928da071597c5e18272d38baf9
BLAKE2b-256 dfc6b21cc461c22c05dd3851b833707d747c4aa039c174e530b0f5a63cf93f35

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54200c2cd2ac94091427b1acbd91326bd2eedc83e98f46292ed0ad378e1d4c5f
MD5 86327126d388be1e95ebfb2d62a73983
BLAKE2b-256 f51b3b66ac1fc605e17e6418c7aaf67f70a67b896286eafef9515748a547cecb

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c0d611a4e2f7ba988fc554b47f8fff8efc0cecb92a247c5289d46c23fdcb870
MD5 ff34eb16fb61169e7be93f9f2e51b523
BLAKE2b-256 04597c51fc96282c931ec9e1214be52db3ded5ca8733e321cb3db0e02005a07d

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a7dac404f5179a945519f377aca57515a8c212064e09025aab1f4764daf2af6
MD5 c96cd3c22df8d3e938855ab0b685a375
BLAKE2b-256 889ced9d0d533205fdd3093ca553e9d54af89221c09aabbdb710a76d78aa9a36

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 774901e750a394ea5f354877fe433977d4613e18da6f43f5ad3a688c2af39d75
MD5 6cc189cc5b04d33e0d202de28a98b0cd
BLAKE2b-256 49547af69f2adebb016e7b1d33b051c74301ec07bcb6e189dc5f1384283172cf

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 77eff1f55af8378f430d5dfcabeb5cd6e900ade52583d486c1cf753e1a33cde6
MD5 a9955ec7a81970b883a79247bbecb002
BLAKE2b-256 f4aeeab3d14239152fcd0aa55355a6a869a61ef2c2fbf375bc87896cfd5cdef6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f74edac53e6e431dc166c8648b3fdeb950f0dd61e8e621e3060b1ae0328114c
MD5 87186d7dfd9b18aefef46ec362371387
BLAKE2b-256 da199cf55d7fe45f755bd4c1420d07584e2655eb309e2a7f6bf416b635d5bffd

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a73a7de7a10528e19c6a71d812f19ac259923607e61c3ff06cf288d46796689
MD5 37b6f782675a4290c1a12a275d078ae1
BLAKE2b-256 b786f0ec31a7e7d234c30216f91954e5b1cae701aa3cd000e1ea78ec68fac18a

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3c3d279c50c0224b94f9e2ed2b140adb9cae66bb01c85243613a2b6388d6006
MD5 d77ad9e0e0c8bdb0f34f9873ceb93cf1
BLAKE2b-256 73fa95376ecdf6645e738c63dcd3f678001bc3d8d5629852bb9e99bdc30307e7

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2359624a4bd48098520e12000f0dba9c295e1f9849244bb356bab82a8c15e1ff
MD5 6094e30b14e85ecbb1b1b6a298f05960
BLAKE2b-256 10bace3f52e0e136ec551b3466e12d1867249d92b9fe1abe41144cce8298a3e1

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4a65afd650836c1ab1198e585035f1b80b2f58fc20a30264ad901424dc0b4878
MD5 b2ef968521fcb69dfab5237ddc58c713
BLAKE2b-256 1c94ab5eb15f1b8b87c7630f88ab252931fabd1b7ab3e0f55a5c9d35cf7df74a

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 84e53996ecd8ebf03f74eaf16bf421eb4f87c277bdb67abec690e55d96637e65
MD5 60d46cd1e311677814d8feb09484b236
BLAKE2b-256 d8c6c810b56961cf6c4e008cee926f9015a3f31e3cfbf6403828b3ec9c513542

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d22dc4cd049162b768702c97577d65aa1bc4f4d1ee61b285bda6e244ac3917d
MD5 c2159699f1274454a2bf068497516ed0
BLAKE2b-256 0283066e53c3edbef519d1ce924569287731cd60e53ae090b8eb78cef37c9cdc

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ac14c34bb50e1285fa75f056ccfdfca94c6721b58b404d1b334af65bf214824
MD5 6917897646460fc1e409357b09ed5d1a
BLAKE2b-256 7ca35a90aea96ffdc4571f541fec63c98f41c502c729ee5335cd9d77ca8eef61

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 014639f4e1e11671dfb8fa135481d2724c9feb57057ee9e7042b132d7c280d9c
MD5 b89faef7e37659bd1232ff1f95fd2b1f
BLAKE2b-256 70e9f680ab9591ce1833c6bc5dcac03391eb5a0693d8c6ec0b948e229e18b98c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 614a3135dccea5e832dc215e21703e3d0f982e4eefdcaf1fcee295e38398d29f
MD5 ecd1ab939fcc89d45b57a24c46c5f3c2
BLAKE2b-256 be25329c64c4cef70d870fcdb188b22efe335c8659c7fcee0c2af593fe2a8b2b

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87865efe0d92e5a76fba3e0644ee07a7c2ae1374f82c02db2623d1abee059952
MD5 5da29ee0a62144510e5bbc7c88a1fbff
BLAKE2b-256 e34f88b925bd08b3fa6734631d9459db856d90fcfaadec744b2036d563f88a15

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97dc3a726ddcda4857eea60bd76bea75cd5374e657ae76b7e4037c63b4d03649
MD5 0489e3504262ed2efcf091345e745134
BLAKE2b-256 ab3e6068ee03eb67e5a5401058274b505002527547e2be0c599c967cf0d3835c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40d79a62f89187adcffde9b79c66238ee6181bf541e54cab52335684854a574a
MD5 34a9522643c0604a23f44901fe20b4f5
BLAKE2b-256 61a10ef21c06466b9001235c314857876c46725a276da579b5f232d544d80813

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96dc76e2c704c3046c5a31d5d290b494891a6667320ca2726c72c18665b9ce19
MD5 f3b7ccbf128f7aaad3899158b2efb5b5
BLAKE2b-256 52d1e7e564684e597898d0784b6dd5671809b12bc43ffddff769a3f1e391722e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fac60fa89f6458b80c76c04b1cc0719e188f0f4fb85ccf246e7f1114724a5b2
MD5 27c639a32645c267fc0927f9c08ecec9
BLAKE2b-256 a46a977b0c43514b640a4d860bd4c92613464c7d63ba14ba9c618c73690cf066

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7068f202319eb9007d9ad06ff113381ba35ce804b92a9f63307a568da08c11c4
MD5 f3d8a6ddaa149a4ca30751c5b88b4281
BLAKE2b-256 9b0c27474be3dd4acbceb1640d7af57f5d602de84848f8047b066055349aa8e9

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c604f670a344b7f982a6e7fe3ef96275c135a31534292fac43cf335cfd0d736
MD5 b498ce4aacc47a4cd93697d2e2e62bc7
BLAKE2b-256 d66a479dad07493fbb68ca43e990af21650d69d4591b1c71fc1a24ccdca799b6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5889ef6325249c5705e7037032bfbb353e9201958492c7d6f9a6b362b5ac5a1e
MD5 b471366c03ecfd5e4aff95c0f73ecbea
BLAKE2b-256 173e8470fd5030c1ac17f21c0a9e8e456f7e4b6d2d90b0e119f90a2ffb130508

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 916b855d3ad0ff5493f0ac355a924ed1d2f2678365e1b85836caf5d879378473
MD5 8e01fa0809bdc7429ae4d29db225ed34
BLAKE2b-256 9918fc36b4631ede06baec84801ec133c26d32d8c8fb3a6b68d75c0a59e0bb0f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 59fa6e54a659a39efd4dc5e2c7f5f0d0ef1057b58886838f1dd24c58a1b75f63
MD5 8b60fc8b372668128c9f8c4a05a8e4fc
BLAKE2b-256 c14a54b7b2ffb3087d6f8d39ca86e0e4c2f47f6d25ef2a81da0f8504b9253064

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4a38227d1d90522886c16534db617e3d81000007aab8537e1d79827ec32b9978
MD5 f3286795efa7a7744f3178addd834c9d
BLAKE2b-256 8c898f0bcb2d41464ceba288e93a844c2a3d4fe924e8452bfcafbebd7bff3a4f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d59525932879bd58f2b284d7d6c9ffa9acc26b01762b841c2e3c33f215a711f
MD5 f32f07b11ac3aafbccdfe9173cd3b5d5
BLAKE2b-256 09d391510902f62077640800693842cd2ffc05b82a69ec19ccaeda42f102b8bf

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fad242179eb31c5d86e298ec6759fe1ff5a4eda68eb64d8abec1ee4de6081528
MD5 2a320ecf45f8faf04e5dc48c1973d92e
BLAKE2b-256 a4023746b3a8e9fa2de8e164df92e5193fe79da5fc2695fee4875ff6ae1da830

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d7c80f43fcaafd0e68148835fbbad4bf95f5812df9942e32d0182eb04255724
MD5 ae4dc291eb12b2b7a9d51e367439895c
BLAKE2b-256 426617f7062ba9fa96a196bd0163073ddf320039df11f0ccf5f9bb2e4c8e7281

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cc10725b0e73eb69abb604d657813a34255ec639d6eeafa6c907f0fb024428c8
MD5 07e807729afa54ad361b3d3799547e65
BLAKE2b-256 b8f8e4159f4b2fc8a803b855d15cbb97b2d110a819c8dc5e1c782449afa56dec

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f64cc0a9a3706083217915f2672491d4bdfbefcb6f4e49ec831045b8fa572dd7
MD5 754c9244c4b8daef1e92b891b26abfc9
BLAKE2b-256 a4ba347b59a9277e84c17ba2ff4532864cde2f3fb6d091c4ea3ea084e94817ea

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0db82f3bd75385872a15e1fab28768670031e3348df0653d8ba9f92e7e77edee
MD5 fa11060fc565659ecb37ba26f1454ced
BLAKE2b-256 2611e61c9826e1543d0f0e3fbb808b85bff9a95455b0a014d69d4cb59ceb63a8

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 615de5682b3d3cf04fca29f3324ec0553ef3514be45ec703c34f9fdf4aec6116
MD5 04a332d6a5cfe0cc9a9e331b66edc31d
BLAKE2b-256 85133397cec0a0483e6c6a3e1cfc46ebf946654a8a0df19d73d15a83e7cd0575

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3917004aed0e9027cd36a2bbef26d790e49b878896a49c603d88ac0fbe07f1a
MD5 bf324e8aa7e6e415e7bc8d0cd6ffed2d
BLAKE2b-256 54e31618cddd5f6705b02979277dd9178f47ba5dfaaaeaf3c3b35ca81e7a5c4c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6468bc7375c07339daa0c6a7bc44cdf0c9180e7c9a1ada8042afdc19cc7fd054
MD5 94dff6012d4d753756f51804f2146b06
BLAKE2b-256 0768d66bbb0d5708de547300986fded97b3abfb4434664ee621df336bc316635

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c3ec0101d06bc01affd78547f634d77863e437a8687d419149381ff72fb3d42
MD5 eb2e5573feb21afcb9351e9723e76c06
BLAKE2b-256 6f2bc188e3d8557d68d14d86c190a40726e72f6b41f33151fe85687a986431bc

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a81d9265c6701c41cf2fc65fb09bfb5b89d8746e22da441c24e5694165cd7af
MD5 526e58926d63e18964751d79dc9e353e
BLAKE2b-256 13dac483bbd41772bbac3390289447616589ae81eba76bbb9a38e219633dd12c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 60ffee39dc2613e3ddb1d7afde9775cfc221804c79270eb264fc04ba87347a6b
MD5 51af44f9daf31bd5b6d78a56ae135e36
BLAKE2b-256 5c469b0322ec4bb43149a1fa9bda62c01de744d1f4828589cb6a349da01604b8

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea50ad34638d5a5511aa65d48880d8aaf25022fdad4bbe6d1f762c09a870648c
MD5 a1db58cde5cb456720a5b2b57c3c94f6
BLAKE2b-256 0cd611d7046ffa0ea39639160c1130aab6e6383dde53b27941321abf87ec9f41

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0378541d0e48e916848cc63b1ddae5b6d7007c5a19759f91b9f6110458040f8
MD5 43c12a10df68ced87f52cb0c60276c8c
BLAKE2b-256 daaacd0b6379fbc3534ec6814695bf7bc6991ad9f38e541141ecbcc6318d70ce

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff423ef7077a16d8faae232b1818a93ada001c7cd7f40ff49c2ba4f1b9582f17
MD5 b4a5911dd1096718289cc30fb33a9e19
BLAKE2b-256 1edbe6aae7f53b269d621777e69aa75f7b90fd669112ddd4f4d5e79d87ebe5e4

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fc8204911db6605c4703ca4d602e9a543488402108d6d7d8d5e8eeb039df303b
MD5 183bc3bf8e877a51d5f7ed4307af0b14
BLAKE2b-256 50bfbff22924d38074249157b762c5bc27eee88ffdba961347ac52a3d37af922

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a043a6a1e05fe4870108c4516ff1a1896d24f1381dc7b07e504027c5dd20a004
MD5 017c57e524bbfaae8e5ebe2e7d3bf4d9
BLAKE2b-256 640a266c91822f14f214be26ce35c1e3e90abfc51b7b28702aec56f36680b64e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3de6db23774f309ab975f2927424b33cb160a4bdc7c43bb9206434833c860ac
MD5 ffe04be19e9a09cd7fd84932bf9fa127
BLAKE2b-256 9de7255fd25332ad6c191c485c56a4c78be1a6a083efef87000c3f1d37719ff8

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1fd33beedd1d4d03505b8b29b131c2e27ea055274f70987c792a58c0ef6f7dec
MD5 c837fd898200f361a66939fd12c23100
BLAKE2b-256 6155b832c0b969b5830a081d5a3122fddf1e6006c38914ae6a0ad4c6c1a358b3

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d55ddba4698e922a89e4088c35af2bdc9dbb6342a450eda24184c5b1d249bfb0
MD5 d61d064fcad173422430449bf29daaf5
BLAKE2b-256 33d98116ce10420d6205bab2cb0c50e950939fac7bf0d11e9c683e15e13ce9cd

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f9fd15321ca6eb6037492e3035ab24999c03594138438f0806022571ff22038c
MD5 9c4f7e61a0e8717613c1e1929b652b53
BLAKE2b-256 cd3baab8107d771acca779e64120fa72bc3b6838f54d76c705f428096eb01a14

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 984a8f366a94f90d69155d13095dbbd6b5d7a97f238d075e7817d6c4dee44980
MD5 53c8b531e187f978bb373719f8653a6f
BLAKE2b-256 40d90dc3f5768aeb5799f52ac3b4ec449892a63f0b793cf27288a0866549f29e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7af1a0463b44c29f82f24f9473d2421575e0bf520e48805599feeb63bbb09e57
MD5 884b5d504766cfb712b8ed7842ddcae5
BLAKE2b-256 ce99d7fd793603ddaf6c5dbc71467ceb1e28daf4540e84bcc1f15bbb11cedcee

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec23b296e085b610edba27e83f9b6af6cd68e88d10adbe4d4ccaf5c551094c92
MD5 1fcd8f5b1c4c4b497d77a1858e69892d
BLAKE2b-256 c744cb7b1f83c01ba213c1273f6e001d550ae7764a0e2772926722a057c14f3c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fb60fc6a4fe7e9c9959e07e405a176acb14fe3cc16ed096a710b049131b8c8f
MD5 26c584684152489f128920a4632f38fc
BLAKE2b-256 d3213eb553effbde95345fbdefe2164a753c4192604f5a6250a105ae8b629fa8

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb528c95cacdca0b63d8168abbad932262521663f4dfb925daab89f1391cd155
MD5 5926544c724d0806c4e2f0fde970e81d
BLAKE2b-256 1d80c0f9d088ac4d7db04deee185f5a56ad07ce2a48dc2ae59312081f4ef3348

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a32e74cbbbb36adfd0029441cae832507050228d08e871b0992b812bc7307e6
MD5 2113ef87513a49e297a711cc5e031198
BLAKE2b-256 193cb7db96d24e03cfa8091897d8247d134fa1bd9c46e04ced636b6751be501e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51f480e78c6ed7ff0235ef9ffb08db9e5e100c195e744a80ebb7e5f1dbe068ac
MD5 4bf0b80bdf6ea81424deeb2c893a4f8c
BLAKE2b-256 4a0c26ab469329b87aa1bae563527d29fe4c5550734353bda444fb64cfb9f7bd

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ea51370dd63853e7b15f3468b570f28d1ec5e0040f04e5134cc7dd7021d27946
MD5 edef1fbaa2d79f0a646298bde15c8400
BLAKE2b-256 149323b9c202ab99c146708962bc32335fbcb1f703af016e324c8bd95ab85a5d

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e023389b969ca85697420435c1635dcd69a127bb184ab5f7965ca0204363c353
MD5 bb7a68d3c6df9b4e949bc33c134de323
BLAKE2b-256 6744b1080692d21ee0267f3890a93e61986e4fa9e14957de692d8ddc59b6d685

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6afdeef802c5a48d68bfa05f83ef01166c04d96b0d51d55084db4ed5d112bd4d
MD5 77bd6dfc6a127fd352f693ff5e397bfa
BLAKE2b-256 f4b02badbd855667044be605393bd28667eb6561f1a92613af7d1383e9a4fdc6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a3fced85c03104f0b078c0e5cb5fd548e7a6aaa7e68e509e0a34dc623399349
MD5 639f181b79d369a26237b6775cb0f7a6
BLAKE2b-256 90f46ce22756324cb33b6f25387b1a475749c1efb0047094fae09d8d8f4a0d79

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36cb80818d8ea21e671be20e9554dbfe3aa0ea95e63225b13010eeffd167fecc
MD5 2b53a46603624ceab3f8973aff07a24c
BLAKE2b-256 a6553d4f2e8bc2dfcab7e8e28799b4c5be865ab4be17ea428c13759383f02944

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c8b1db60099d60b4eaeb620c9414fe5f69bcff270acec4b5363c243ee9587b5d
MD5 6d5ce2513c6d0ce2192b4c175c1622d8
BLAKE2b-256 1a4531383ef55ef42f9f5438528d48a9a3b8fbf802fb116357a1db15b265ae77

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e7f2f042f6d13e84a48c164fa4dd09c10e22d269dc5778fcf95bc4b7c21a40a7
MD5 cf4fd29d60d1e6638a437efd48808a50
BLAKE2b-256 921c7bebbfb80b44f80a9457ea2d2e109691acc22469276d5cef5513a07cf5af

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fc80bd590c07457f6d1dd48db4ecfa9d86258f502827ba0494769e146f68c309
MD5 473265f2cd451ca5638b2f87a9408851
BLAKE2b-256 cc42bd0598a71f064345470ee96da229173f767f6423b1e7f74d26d012acd689

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 249ba1ff246bfa7c461f052cb319ffd0ab7b5e24a2dcf0fc50112e9c04bf8a3f
MD5 ac4afcb39cdc1d8b38d6e332c83b765d
BLAKE2b-256 26ecb57515b57dfcde08fc0a78ae994251c2c86a33feb65f0bb773588e4ac484

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 13440db428de0606b8b68606923a2ee245489e39e683a0c2f6c55e409f79928d
MD5 5c7b1f127f072534314496091fb8665a
BLAKE2b-256 b0568244a330f7129b35a668289f73519e008fa99cf745773ac4635fb3fc1e78

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c8e973e91d1d666a2bd95d6fd18241b89c86f8ff1aaf3960e618ec7ead4f1878
MD5 fcbc070f423f3bad503cd64460729220
BLAKE2b-256 ae3027f07bf10e3db455a99cdfaaa82ef6fe98871d27226e5ab236167472759b

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4d89e3d5cdf686e0cca627e2f9d6315983d30300305eda363381020307db503
MD5 71c6fce8a77403fb474cec21e11bde28
BLAKE2b-256 e5e0f899297bbb28ffde1298753b1ea5d9a27a18a0f9f0303b90d8bac8603ad4

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfe3f18556c071f0d08cffb4ca30dc7fd6fd77ed2606ca2b665764f9b05cce47
MD5 20c903148627d184688ea8eba326b787
BLAKE2b-256 9eb9374b0154cc948644221e9a5cb56e5c18969db21d75c53421ec781e4e313a

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38520bd3c4bb1abc341a6163269085b36960ba2132bad24df1a6fe2166e58946
MD5 a1097af40d0cf3f90ffc4b92ec5f9d32
BLAKE2b-256 5ff0ca127c80d1298b263f64355858d8699b8a6ca974adb47a582c37712314f6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a523d0ec132abcaf5fa85dd243765da9a7b7ec6a8cdaab0cfcd7e9cc21fdf1ac
MD5 b78806692f25439a4f2fbb060c0d30c3
BLAKE2b-256 a2919e91009f899e8d2e3b9e5acde38a98ddcfede32d2e27b220376d9d320a56

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e857ee462dc095e24b55861745e912328291a61faf731de276d6d25f89fd2ca1
MD5 46a9758de19f4b0e421fea2d56f9cc11
BLAKE2b-256 4de244777bffafcf6c4313da5d5f01b94deba7942f1eb910580f21484630e0e7

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60b201ea095d73843ac0072c8274fad942c9065a16cbae403e15ef2b7b742ac4
MD5 bf8ed5a3fd8ab41396463c2bf59549cc
BLAKE2b-256 0bbcb91d0ae404db38c727f8df9a482da3d205f0f75bc1cf8520f8140fe0251e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 04db0e4a8739db19bc567ca545aaca1ea8f69db05916583327e7bedb84a7aeae
MD5 5beb9899513e01d684a64c14f48c3261
BLAKE2b-256 83b9fea8990b38fb1fc70c2b06e599f0e401bf6a0be0cce4a3445e42fa041d2f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6c0be9f026a9bacecc8572cf4f8fd3aad964ef2795fb3d927d39a10a5bebc5f
MD5 d633e3fce6c69324f2808f06e184e36e
BLAKE2b-256 2c8a7de703cedfbcb0b95e79b0792f2e265af9a8d9e3b006dbd56df5de4bf044

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ae822844cd3d9df9aa536150220e475f11410b98f66d56b785489c53625e26b
MD5 464bd1bd7b94d158394667d5638f2886
BLAKE2b-256 8144add1be8190f72f6fa3e01de6aca1d3c321beba2688cb187299a439d81718

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93678a36cadf9830e7d6e9d7a2ed6e51c5e5b6eb5d1ec3949eb4c5fed3a9fb96
MD5 94645acd6d868f28a6f576de5521afba
BLAKE2b-256 32fa3b67161bf4a86a442714e6819da57454438b15278346671cfcb67c15a50a

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3f523ab69a8297f3dc7c21cf7f505b89ae696fee3ad225c50406490c2dac28e
MD5 fd65f5a479c095e10d8575918a1c5b20
BLAKE2b-256 d5edc366168c3d9f538f9327b71eb78e461851f708a2c7378476dc18d371e4cf

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 60a640a3202fb4e5264bbdc2bc998b81cf8598d036116bcd87e94d353843bb0b
MD5 f497608bded095a9d66b45c768cd13a8
BLAKE2b-256 1e13fb909f4d7e8fe24a7feb162cd18f54f7a69fca83d6f54886f7b378caa6b7

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b12aed845125599f164a25a9a962a14a2e2476fd7f8f7e29be7963e1ad1cf29f
MD5 dcb72484039a7fa20675fa8b887157b8
BLAKE2b-256 2ffdd755c00c791fa7d6d18cc58ace525dfb05923f453f6f104d2136381c8dd0

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 babc62f1e660d73517b2a2aee16523a853a2ca8996b2fe0bc6f998180d18c639
MD5 b65fabaa2ce0924e343fbb8656a0e4e8
BLAKE2b-256 959ba4189ee8d3cc7c1fc76f003efe2371a22bd335e997c66139914cb1bd99fb

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ade5920826304343bd72bcb7b95460176e7911bbd89c5d39a5c99c241cfb181
MD5 7df1c61065e16370f9181cdb84ef2958
BLAKE2b-256 c1dbf63a9bdfd1da969ef5dd8b9f047eda61d37a3f29253072020e579168f545

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b79dfc28754233e65a7fd55986a00e0f24d1820f7eb1fbe6e9292689e4cc31c8
MD5 924768216669b651ce73a3144e6fb645
BLAKE2b-256 7a65a59f7c8505905ea2eb030e3bff9c26bf5e22d92180d3d678f3856ba7b30a

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8c05956a445030daf28530298a74ffd2188a0ffddcdf20a2494cae8c479dc4ae
MD5 263df9c0bd4df6fd513d7cdd6ca035e3
BLAKE2b-256 66ee2f7306c2dabd2bddcb02cd6f3f1640f634c98da49a62f1b0fa96e8af4491

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6242f52c8e00ba0f5e31fc5be19612e170470671d165663df01be195251b6e6
MD5 fbea65bc9603e3203361c155bf132e7c
BLAKE2b-256 7617a6a03ea59ebdaf4c0c1c875a652aad1ef922834eef78f1cc6a9d45789347

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 932732884ad0d413bb74f016f05e7726a92ae7abdc52061bfb828858137bde82
MD5 5b232101b9245fc92fcdd0c6f378a055
BLAKE2b-256 b604de30557b451b7e74065783e62dd5cc0de2c7b04f5c386728dd3aa8987ee6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56749d80a37a5425f4b0ede1281e1c0f2e80e153149a5c65b803c8953bf3d75a
MD5 b23d49cf1f26772ace53ab3febcc714c
BLAKE2b-256 7bb4fca21fc98e892137cb18a23d3ccae975053155bdffa0d101d2e4f22c791b

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d58e484e38ef6e4d5fa613551d8b65fd945eeb3874cddb09d431d512db2af01c
MD5 9d79c582dfae9d631d8657e8aa8ba0cf
BLAKE2b-256 dfd287a3d9be476d979cf1b10aa090a9c7910bb7f2aec6f822fb36f0c061201d

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e7ac1f9e7e4ab8f930a7027c0d3ce465636f4c7618c3360adc2937ec506b49d
MD5 d06685ea68b48b75721b8233cf484ad5
BLAKE2b-256 bb46895fc56f655a183d55d3b05fcf35209e82907fcf2cddfaa39a2605a6bae6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12d323476b6c2a92aebf916ebd5bf8e217cb836ec974d172a2ac16b55972599f
MD5 fb76507142c9e57beca511da5d65d536
BLAKE2b-256 fda02e446a38ad3b5830d9c17fe446d76b34ae12651533999937556ce1edf6fd

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 008889de754c0656c7778ff0ec40819931ba8d9bf934689399496208f69177dd
MD5 8006f6fbc5f1f7c11ded4a9726ff0466
BLAKE2b-256 a1778ec9c27dc387bd498193f1b4f3eee17710f8119225a688343c0ddb619a70

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cfa9c90ed8e5271a9a014a3715398613d916f97328259831dd5e29d31a9097c
MD5 2c52cfd7612be4673856dad6b18d1972
BLAKE2b-256 aea73c1218f516afc46b90d4a280cd913c83b1ad78aa7a4259aae3c0bec3c77a

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24f690d66efc1c5b99a4090195fb8f4a402160bf43d59efc8b85498a1d276aaa
MD5 fd6da0b9b8eec5119f9636caff357869
BLAKE2b-256 714346c21e62a829de082513d89f98c132798ccd3923bc5b559ea69e4b038959

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c184663d13d58a918f99853777bd22a4c78d6e8f4786ec84667be4a09a3c9a8
MD5 d95cdcee1776f5633a02e7858cfc181f
BLAKE2b-256 940d94606dfe429c0e10abdb13ef788a458c11829eba77672c100e3c4f9dbe11

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ae98d16a36025f333ec953ce281707484dbf6c760acaaf518de023ca1e3f165
MD5 a376f5be9ca1bad911bdeba48f7c13db
BLAKE2b-256 d09830f6b1e6a9b49aa52c8a830369857ab2c71af0fcdfac39f145797913d64c

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2f48556188fdf4e56ca597fdae97d74134903c1176e1387055201460c616ffaa
MD5 fe5ca2e5c46f0faa056c1bfd5c17502f
BLAKE2b-256 0ed1193bd7595609b5f92a9b2534c58e524b0fc66f267b78c865c3d4cf335d28

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d6d53c8418284b7968e71e5f9669dbe024a3beb56ae28d45dac0f5d1a281e181
MD5 37ed5703a213aeaa35c3fcd821138be7
BLAKE2b-256 7c38b587fd47edf309e27ba1e8b6e7880c38e6562c3200b54e4f329ba4344d65

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 adc2772b6112e2b204e9a0f3fcfc9341b0c703f6fe8e520cd163d8f8cc6785d0
MD5 bee0729731deebd13dfa37aba75f3cbc
BLAKE2b-256 ce0dec8562b767f78b56402de7d6136fe86d310a98c9ae2e9cf292973724740f

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3df2b4cce5bf09c451cfc5e48823c6998b221e4654a72bfe16d8946d25f5a4d9
MD5 0bb76736191353a34106d537a08ea0ca
BLAKE2b-256 aa3865ccd653b57b120231601226713342d25a5e75ba9acdd89514916c27a8ec

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 acbc56ca6ec65fd293d8ce5958f2046ca8aa998c1ed941ae2392883ef145538a
MD5 c9c2b016e457f0e04c2e758c7c20dee5
BLAKE2b-256 df57c1d60c619611cc6891abd8697ea2a3e4eb5c1e017555897013fd74f003cc

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c515838c318d721bd219600754eaa7f14bb755e5b4ecd1e380003141e8882f2c
MD5 6a25ebbd88fda448d6cbb1486097ca7b
BLAKE2b-256 04b22fd95c991b812a4f05052d97b47c3d66d84a50e238f6ec53c70c62f0d59d

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 654d5d09752069548779a7666da954220e1545cb0798c74d265ef3c23ec6bce6
MD5 030eb9f51ad9292c2fae4d136300e911
BLAKE2b-256 0b932d5424272bb658afe68cd51137a946302e83e4df6f7839c3cba62e42f5d7

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ae34ff425c9c735fc3e29c78d4dfaadc490833f29adb5c4dea90e770aa25b0d
MD5 7ce653340623067c61067538a12ab256
BLAKE2b-256 700084d9f7c7d0a8f3978aedced3885bcf5e70e7b07092cc35e1ff31470c644e

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f24b9d5dd0facf76cdee6466951dfe6f67f646f3505032633ba038886bbf00e
MD5 c8a2024c0c8e335c34c3b8be37b98724
BLAKE2b-256 5258b76c94574883c594228501f61301a94afe56aa84e85b7db11b3d018f3805

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7eeadd3ddd868c57be6cd96baffcf0abb2057c43d4eac403e449f498f04732f
MD5 cc2c94e0ab7d1a9cf62f300ee4c0c131
BLAKE2b-256 6b99c1367de6da24eb1dc8901c1ceddda9181bd8bbebf15e7738d07a69337bd6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9866a6e4282b821893ea1a74d0fef95279d049fc82bb412c81aec76ba0ca694
MD5 d76ae420ba09cbb6bf559a0804348d58
BLAKE2b-256 ebb5fceb2277bf2c7b1f7bea18221737d8775a0a2253758c2fdd8a7023039552

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ed2229a94095657e86065f32b1056ad3ffebfd1e585d74b2daa93d6f78113bd
MD5 0d9a83268d5dd790c59cc29a834ddd08
BLAKE2b-256 48b9fcf13156d7741dacb0bf64339d7272c5a6b5689e4ff660bb12f917e5cbbe

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3c7d15d404bef37c4354cabe4961cb03e72ee034c06a6f262c8620e3e3af8b3c
MD5 2846dddc9aba1c906d9dff5dd1b0d458
BLAKE2b-256 f5df20ed972b95fb7bdaab14629b6b637271ce24592192b70f0b947f33f53f46

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10a578649b6d8ce012804594a75bf88430b8a8522c60b75abf8df7b53cf025fc
MD5 38acab3b4f92be7911afe8dbd70056be
BLAKE2b-256 cec95f8f51b3b9e6a3e3bd4277a9949cc1328020f3a91cbedc9575d4e7bef625

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d779f53616a2928a0943b72b4873942e85df50cd3018eec4322d2c325c273baf
MD5 4a55b8d8ca6b4845c6e2ab060d1fdd07
BLAKE2b-256 8754428075e67e7af01aa47e202028324ad32cfbea0b0dd6c548ce3f5c218827

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b8353cc98977274345a3b4426a7d9c8db279b7f0eafa4c71df8834c2f154e38
MD5 3b7bb985cd7afabf3946e5131f3c1cab
BLAKE2b-256 bcaa537bd15b639a642bf812479cc29521aa3b871bd727cd48afa58f06fd77af

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29062d65206fd0a192b182001510378624b33d6254387c03422587ca3ef05f7d
MD5 75ccebe5d068a2c3aa353b2a279182b9
BLAKE2b-256 dced77da9196fe6ffb4a293aa21e42ded32c8eac115015d4c97a94c47ae4fe42

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dd7b59f14a27ea05fc9a9569d7cb263dc807d1dc95eafc65eeb0ac00759533a6
MD5 3e42d308bf493788529ca3250e7de6d0
BLAKE2b-256 09891c400edfe7a244531bc67c5ba817dfec587967bfb1599a3603b5d6d10e62

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b9193c4356f24a29523e5bd120e30ccecd9db9acdd877e3f824c979a189d3ca4
MD5 a4203cfb384180f254bde93d48d726d0
BLAKE2b-256 e9e08ec8907a8db927e0eb1a118de25b765dea01842cda20a128acd73c0f0ff5

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-win32.whl.

File metadata

  • Download URL: PyTgCrypto-1.2.11-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 20ba5f878ece256129147a3a921f691bea5f483a82ece3f23ce29aac21e0a02b
MD5 5e7b9b6749033e7e08532095f2a24ab0
BLAKE2b-256 745a9d49a8bd0244e6b3649eb88733615153d2373ca5a291cbbcc6a3b727fad1

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9abca605504047ad4bcbc5d5431e8163a7630b055df670a367877110a1f2f432
MD5 0f1cb378a4050a36dfc2e746d691226b
BLAKE2b-256 6553615d085e8d76f63ea0313d30bff8f8f4f5b9290a0b8808a5e0c56c05f416

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4d16ab060da46f0c6c2213bb8916ff4df4a85aa935e7bc1cc08c27c28863c2a8
MD5 e8e0c0cb1cc064d5ee0e276dfe66fcbd
BLAKE2b-256 9ebed0270221308e9efed094c597200a07a076e25d8b70430615614c115bd058

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 381a6f565afc32c769d1435c697fb12040354c293968c7e574fe8dfd52b6d0b2
MD5 aa19ff4983cf9044521c58762875b251
BLAKE2b-256 e39865ff590bf7930a5763943bc8f6323c71182bedc712459cddc0c4ef681884

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 149386bc986d58f6e526aef64a33f3e31bfe45b9f45f7606c04bfb288984d618
MD5 ce6cd9761a9e2caf33480af617921244
BLAKE2b-256 009484eec5ec4315781e47934ac1076c042e0f9f7df9503bed0b75ab61280728

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 920f069cea960d61140b4addf98e624c2f84a8fda347533fb7b4e353df65239f
MD5 03b3119078dda7117130b81a6e8eb27a
BLAKE2b-256 e7fd6f806922a4503b2caf741f3709381bdb7c151611e591886f763dc932ddcb

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6beef5be8571131e3723db841a8f2310087b5d928e29893a6974ec648628dbd
MD5 341f2f03b3b979240a2cc3bfc5a8618f
BLAKE2b-256 99b1c619c1d994ec8f581368e8b7e6f1d3478a3f15e5db9c38bb2f1718cb9db0

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 268505ab7b7c4f9c27986bc6ccfd722ba5fbcddca3888fab53139857e79bbfe5
MD5 2e2f42cff9f3c27187e103b1036d7d58
BLAKE2b-256 2cdacc684e81b00a21c902b5b99dd730bd8548ba6752db15ce8b487971fa8c91

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c67b471d89eb0b1939abee3d46f7f35c03c168377a5b23895352f031b895c07
MD5 0d5ae87f21228899c6e3844ebb33a949
BLAKE2b-256 4bde71ff84f53f1a4cf062d6add1399417cd5094df69fadce1c68c6e97e0c688

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16ac432e9c9abbe7fe2b4abcff663203f46dca914fdd4584a94c734d825f3d27
MD5 4f1c8cddcced977bb7c0955aca1d855d
BLAKE2b-256 5cd9b1c9384149a9e69202f752795599522c9f8b7c16642a855293d916ee2b50

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 29446465f968b65348b9f27ddc42e81cb8ce976f2dab099c5a7520c3d18807c3
MD5 bb8f543a6774634a78250e9ba95fc4cf
BLAKE2b-256 3b87fc4967bd66843327dbe1601c27439a3013de71978765051517c1972b7676

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 944a8577a73bae2ff8380e0566ef59f73b45cbd1c5b313e084ca9520c40a3adf
MD5 4b367f10ab1b81c3b0819cc37a5a16a8
BLAKE2b-256 f31cb9176c4e0d32b18c4ee8d2a2d9bd7ec462f8a4896ab6bdaf513a3d9f2e4b

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 754b699e80f74ef8f267f68d975d4962468f10222c4d60530844226d9c4fa1ea
MD5 033a7308066f20d83114f694f9cb21a8
BLAKE2b-256 6ce1bf74042ff58d8a3714bb1516dbaf679c971c985f1659ea17c692201204e6

See more details on using hashes here.

File details

Details for the file PyTgCrypto-1.2.11-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyTgCrypto-1.2.11-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3604a8e44c42674305320fc5bf2963cdd3a14f96e50acf525eaf307dcb03bea
MD5 14de7072af4936a87f5764540064563d
BLAKE2b-256 a12841b8e7bbca8bb3e49b9b44cea8abb0bcfac44723658fef982b0f7d7b1b71

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