Skip to main content

A simple way to encode plain text, keeps the result sortable and partly searchable.

Project description

srndcipher

一种简单的文本编码方案,编码后保持字符串的相对排序不变,允许局部搜索。

⚠️ 这不是安全加密方案。 本库不提供任何机密性、完整性或身份验证保障,不可用于保护敏感数据。它是有确定性的字节编码,在混淆内容的同时保持排序和搜索能力 — 适用于日志、调试输出等非安全场景的数据混淆。

算法原理

每个字节值(0-255)被映射为一个唯一的随机字符串(seed)。编码时将每个字节替换为对应的 seed,解码时按最长匹配拆分还原。

为了保持搜索结果的可嵌入性(每个字节的编码结果必须是整体编码结果的子串),seed 的生成需满足以下约束:

  • 每个 seed 不能是另一个 seed 的子串
  • 任意两个 seed 的相邻首尾字符拼接后,不能成为第三个 seed 的子串

这些约束使得编码后每个字节的密文片段可以被独立搜索定位,同时整体排序保持不变。

安装

pip install srndcipher

使用

import os
import srndcipher

cipher1 = srndcipher.SrndCipher(password="Your password")
data1 = os.urandom(1024)
data2 = cipher1.encrypt(data1)
data3 = cipher1.decrypt(data2)
assert data1 == data3

cipher2 = srndcipher.SrndCipher(password="Your password", force_text=True)
data1 = "your plain message"
data2 = cipher2.encrypt(data1)
data3 = cipher2.decrypt(data2)
assert data1 == data3

性能

从 v0.7.0 开始,seed 生成的热路径使用 C++ 原生扩展实现。

版本 Seed 生成耗时 加速比
v0.7.0+ (C++ 原生) ~38ms 6.3x
v0.6.x (纯 Python) ~240ms 1x

C++ 扩展在从 wheel 安装或从源码编译时自动启用。当扩展不可用时,自动回退到纯 Python 实现。

支持平台

提供预编译 wheel:

平台 架构
Linux x86_64, aarch64
macOS arm64
Windows AMD64, ARM64

本地构建

macOS

./build.sh

Windows

build.bat

国内网络说明

Linux 构建依赖 quay.io/pypa/manylinux_* 镜像(约 2GB),build.sh / build.bat 已通过 CIBW_MANYLINUX_*_IMAGE 环境变量配置了国内代理 dockerproxy.com,无需额外配置即可使用。

如果代理不可用,也可在容器引擎中配置 registry mirror(以 Podman 为例):

# ~/.config/containers/registries.conf.d/mirror.conf
[[registry]]
prefix = "quay.io/pypa"
location = "dockerproxy.com/quay.io/pypa"

发布记录

v0.5.0

  • 首次发布。

v0.6.2

  • 默认编码器设为 cipherutils.Utf8Encoder()。
  • 适配 fastutils>=0.42.11。

v0.6.3

  • 文档更新。
  • 依赖迁移至 zenutils。

v0.6.4

  • 文档更新。

v0.7.0

  • C++ 原生扩展加速 seed 生成(~6x 提升)。
  • 使用 pyproject.toml + cibuildwheel 多平台打包。
  • 支持 Python 3.8 ~ 3.14。

Project details


Download files

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

Source Distribution

srndcipher-0.7.0.tar.gz (7.4 kB view details)

Uploaded Source

Built Distributions

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

srndcipher-0.7.0-cp314-cp314-win_arm64.whl (19.7 kB view details)

Uploaded CPython 3.14Windows ARM64

srndcipher-0.7.0-cp314-cp314-win_amd64.whl (23.1 kB view details)

Uploaded CPython 3.14Windows x86-64

srndcipher-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (171.1 kB view details)

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

srndcipher-0.7.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (165.2 kB view details)

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

srndcipher-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (19.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

srndcipher-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl (21.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

srndcipher-0.7.0-cp314-cp314-macosx_10_15_universal2.whl (35.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

srndcipher-0.7.0-cp313-cp313-win_arm64.whl (19.2 kB view details)

Uploaded CPython 3.13Windows ARM64

srndcipher-0.7.0-cp313-cp313-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.13Windows x86-64

srndcipher-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (171.0 kB view details)

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

srndcipher-0.7.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (165.2 kB view details)

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

srndcipher-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (19.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

srndcipher-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

srndcipher-0.7.0-cp313-cp313-macosx_10_13_universal2.whl (35.3 kB view details)

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

srndcipher-0.7.0-cp312-cp312-win_arm64.whl (19.2 kB view details)

Uploaded CPython 3.12Windows ARM64

srndcipher-0.7.0-cp312-cp312-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.12Windows x86-64

srndcipher-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (171.0 kB view details)

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

srndcipher-0.7.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (165.1 kB view details)

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

srndcipher-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (19.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

srndcipher-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

srndcipher-0.7.0-cp312-cp312-macosx_10_13_universal2.whl (35.3 kB view details)

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

srndcipher-0.7.0-cp311-cp311-win_arm64.whl (19.1 kB view details)

Uploaded CPython 3.11Windows ARM64

srndcipher-0.7.0-cp311-cp311-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.11Windows x86-64

srndcipher-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (170.2 kB view details)

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

srndcipher-0.7.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (164.5 kB view details)

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

srndcipher-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (19.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

srndcipher-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

srndcipher-0.7.0-cp311-cp311-macosx_10_9_universal2.whl (35.2 kB view details)

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

srndcipher-0.7.0-cp310-cp310-win_arm64.whl (19.1 kB view details)

Uploaded CPython 3.10Windows ARM64

srndcipher-0.7.0-cp310-cp310-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.10Windows x86-64

srndcipher-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (170.1 kB view details)

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

srndcipher-0.7.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (164.3 kB view details)

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

srndcipher-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (19.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

srndcipher-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

srndcipher-0.7.0-cp310-cp310-macosx_10_9_universal2.whl (35.2 kB view details)

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

srndcipher-0.7.0-cp39-cp39-win_arm64.whl (19.1 kB view details)

Uploaded CPython 3.9Windows ARM64

srndcipher-0.7.0-cp39-cp39-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.9Windows x86-64

srndcipher-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (169.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

srndcipher-0.7.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (164.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

srndcipher-0.7.0-cp39-cp39-macosx_11_0_arm64.whl (19.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

srndcipher-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

srndcipher-0.7.0-cp39-cp39-macosx_10_9_universal2.whl (35.2 kB view details)

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

srndcipher-0.7.0-cp38-cp38-win_amd64.whl (22.3 kB view details)

Uploaded CPython 3.8Windows x86-64

srndcipher-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

srndcipher-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

srndcipher-0.7.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

srndcipher-0.7.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (164.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

srndcipher-0.7.0-cp38-cp38-macosx_11_0_arm64.whl (19.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

srndcipher-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl (20.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

srndcipher-0.7.0-cp38-cp38-macosx_10_9_universal2.whl (35.0 kB view details)

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

File details

Details for the file srndcipher-0.7.0.tar.gz.

File metadata

  • Download URL: srndcipher-0.7.0.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0.tar.gz
Algorithm Hash digest
SHA256 fcf28a0e4e35e94e6328f83cfe53e884e48bf6f44266854d50ace4f69da46896
MD5 74ccee6203c59c87e0123f6544b6f97c
BLAKE2b-256 1cde7fe4011217ac4fdfcb037406dca0b021b0d1242c88e9b0450f6e3054a878

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ad964560e459f75e752c217dcac85bc2569b0f9e08de224ae109bd8bde2e253a
MD5 d4a56029b18d226924f19cdedefbdc85
BLAKE2b-256 901e32cdaffaf0c522671d55adfeaf818b8cd443a1f786b101071c55e60477cd

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 23.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 79c170243a2afc9a64d3cd0f47fff4b4bf021a796d8c03c9f3f1eb9267e03f5b
MD5 5401656dd5d5426deed3313e01ee09d3
BLAKE2b-256 11f9fdf078f3d6ce9b383fefd8905dd9575dbef77789c72a7d71d31a22777022

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e975758a61318dce93a2b458881e0e12f38ab6a336e1e9370d7b228ee89b54cc
MD5 f12996a1659c9eb90fcf48e86f17a999
BLAKE2b-256 9f1f4574125a191ff9ac2d95fbd6de42f8bdc0988531bbe4eb7aa4a7b61b3170

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca191a60df30a5d51b06067875070db246138d157d86a7536d597825708780ca
MD5 8a6c8b1e055ebe5c0afc0df8894ce20d
BLAKE2b-256 b8e8704786d9c5fcf4c85e8d98c01d4e5cca29f679bd2a918c5012f354dc4e65

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81562be8dc09d84406891187a94315101e94d92ee099d263aa099fd20e014c10
MD5 e8716fc3337de6ebcff4d700f55c8646
BLAKE2b-256 42fd95677e4e3fc6f6c353bc490c898d244b0b28a01758f93794191eb92193f1

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3a6a47a2ce8b48ee21bc0a630a5133bafcbbb15dc1cac00da659399cc4af93c
MD5 b97d662a1df2f9167547a7c169152189
BLAKE2b-256 917d6cad99d14dd2ef3748dfebb5c5047bc1c0e9b0a7c07d0be3b35004a40f17

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02fc81fc5fe842909df1bc63369671f4eefbb0562f3632d3ede2bdd6032cae49
MD5 e25dab255d8a823f0cadff1ad8e90d40
BLAKE2b-256 674031f731391f35b63efb6d1dbc15c41184c07313ff47f2202ee25ce9f48178

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f9b3926d59807f1c5cc8230efd11d5b825d7ee48586cba347b4a4f98c29920a
MD5 fceef2f325ef9ca6357d0a551166457b
BLAKE2b-256 adcf11a1bd0bedae6cccc8441fe773d2829ffe29db75a97527c37949d30b489f

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3e8931c0c6a7dbf8cd8a6cc1f70c14494dd2e0f704ad0d18cbd0723ccbde6836
MD5 44294a126dc8db2f6c737624a2d43953
BLAKE2b-256 6d18b7157beddc08edfd7810e0ee1977a73bc8f3ef8ea1ee49e699ba2658ff1e

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e9d7baf742f0187fe44a6fc5868c0e218727f4a94ac39db2cf52464b8fc58e93
MD5 7a8b2d64e34ef07081bc90639d5c8384
BLAKE2b-256 3b822e8f049540781ea755eef33504b4ccc35c3c4379c201e18c91e488b1fb15

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa8df94a6fa9e551971cf9c1049a8bfe7212337302c7c18fd1c6a33217b372c9
MD5 cd032347bdb6db4666e3a7be73e2cce9
BLAKE2b-256 afd2c2f3d8dcb55be60619ab06e6708f85fc0752fc0a90ca5560fefef8140427

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b0823afa4d6a9d0588860cb37e80b0e54986272fe1d51293355eee79aee12f3
MD5 f17be804fe6fdabb8fa97266ac0eef93
BLAKE2b-256 40dc580db47225510834df462335c807f9490e9162efd477aa25d318e0c0fd5e

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0030e470b0f236c7ffda1e3c21d839f92bffaabe03636b7853045e2a015182cd
MD5 597a2e271e31410fd664a3701189d5c4
BLAKE2b-256 91b3fbcf992b276e31dd6d23722bfd4985ed2533738b7be62d719b1cf128f73f

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9890022da1f34d43b4cd6bcec4c1ad583bb8f4f3a6bc38b0508cd55015da6b5
MD5 30464f6483baef3ddc310d43c9287b4f
BLAKE2b-256 c85c6c0f6c4fe700ecd603b933775fa91b690f5bd54022bba1ca9b0a7255a2b8

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 109c328bf597e2fa9d2c805fce2f799753ead54fe8acb778622023c918f11ab9
MD5 2c0bdb38d22e6b2c38bd663229d01dda
BLAKE2b-256 5cc739c561618e2b1756fdca881d1170c80b7bf3e91f86b6bc77547d7c9eec23

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa7f51ee70bd783abdc51e13e0a5b940490f1454c91f2f5f23d0a2e356582a2e
MD5 e14d03abbcbbdeef38644c9dfe9a15e9
BLAKE2b-256 b043659af367d7b994e7ea809848ac60538c91e11de6d6d4bb4edee634661c34

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98d4ac03cfc276871aa931ae9273c59ff6c26adc2ed20eabf828ab15d833d915
MD5 fb77b0220030c6dd0dc9c705f20d4fac
BLAKE2b-256 ce41efaa0bcd0d019e910f0a7316829b738f3d6bf06c1bad474d016cb916b251

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 27b1f976198d4112c0c7e86e6a164baa33289261c8cbbd5723057259835e53f9
MD5 a6e6ed89fd8bf48674941938e706fdbc
BLAKE2b-256 df825df4eefbcde58b2e9ac53b9deb548860ccf35d240772daabc91f2e577aa3

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 06ca77dc51d92cb17eff7d06d5f7dba32c097ec9b87b785571b077c3d3e283e2
MD5 aec65f647316970b4413f53717726e30
BLAKE2b-256 c5e5a81e1e10b1e2dc1752ffe8c3ad1be1b656b34f09cd121691c6acc6d88045

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9894147bd175740ec463c89f414dfe360e07a96874e0d4d6d96f14eb9e6efbfe
MD5 0d35edf50fadb279d9fe7b88b35d1b04
BLAKE2b-256 f999766686fb76f3b0d7fc042244e7b21834c908c87d82e077989275c2162e96

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d2c1cc3e680c5bbb059cfe1fa4bc2602fe750fa95f2ecb77592e5413aa68c9b
MD5 1980f7784aa0d955aa56cf4927db3994
BLAKE2b-256 f68e6d520ec8203a4fa107ce511fe64c77d009f64c7f304dff14d8e571c17c76

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d310f0283dd0eb0ccd3f975b74ada64e1d570f923f79ac91b0d4779f78b6a42
MD5 1d6fa6219d205487d4958de19fcd9743
BLAKE2b-256 3f5babe8b976c906cb7ec91efd8863d7667ceb1301d034b9797cb1e051759321

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a4510631c1086759dba3555c6c7190d9b4b50c55be895384f5bc99ab61019a3
MD5 cf7f5edc309ac8d05b905ccf54bfa360
BLAKE2b-256 0bfefc2b69a0f9b297a3464891b33d0aee1647a6940568c751402b80f9a7d76d

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c771b98af046c16428f5c1ab81ebc0af32ce5a7e2176bf6b4eb9aae3af8306d
MD5 fdad8ba53e793df739b5e8ebce194c2e
BLAKE2b-256 56b5eb2683e0d3333ff03ae95b457d99a0d22d04c04bf6f37b9874059ef90271

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ac9014f71ab200a9fc3dedd17c9b5a32d50ea45275071e2438277058cdc026d
MD5 38c4c258fcc36d5d13c861ca85f1dc02
BLAKE2b-256 711a3f2a32d728bc0a2346293b0e07023a88c05a4eb44265be8285302d1c5f8c

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e34f6f55cf98e6cc49aac41b7e9529db57d7dd5b01db5d6184d4f0a214b59f89
MD5 8ccaed6636dc8a36048962a3c0172d20
BLAKE2b-256 2abc6e99d6a666f4c0e95ee0de5691e23c12f4ec1344ae9d45481e4d437033d0

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 977474c7b241c7d2a17b577df73045b53a5811bfa9546e2ed891b466935029d9
MD5 02ddec1872cd0873451a28c3237c9b66
BLAKE2b-256 cb1c7ce9b25169b0195c8a463e9e69402356c27013cff9f6305949ff21c053a4

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c5d7eb3b3f5c731537f73c6e5bf960b0771654e1fce186e13cf21419174fe6b6
MD5 6e91e31fbd1bbad76497f5969578c651
BLAKE2b-256 9f9fe2a9bf56b90eba7f481affac03d8f3ba8dee07775645955a5cd93372a5e0

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82ddb729e4641f2ad21a856a770b69aafdeb483c73c1f10844775e28f3bc53df
MD5 dac58d10be2af2801c1fa481bd1b3b20
BLAKE2b-256 792f1733f81d1e712ccfe96cd7c07be2129200571fda57a2ca425afaa047b5a9

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5406337894e89d6fbf13bbc96c6c8af2a125ce61a0ede3c133154904d9ced8d2
MD5 dbd3822c9e2e5d2a8d403c212f5669e3
BLAKE2b-256 1ddccd438ed76c906a8ff354e4c4938bc34655c2836afd08c56926f127107052

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff0f941a1d15fc7f497293f1def87022b2e655dffc3e811634be3517fd6d7150
MD5 2834f3bf0d48d1a57ffe1db76e6ea1d1
BLAKE2b-256 d811a88c9065bab3c558f47e228d46050538679af45ecffdf89e23b124eee5f1

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22bbd435e12c9d6a103999cd95080ee8391840984f4162de275c54c642f94d74
MD5 6f9c810502517083d98c8656914535af
BLAKE2b-256 6df09676eb3681e0aa2da8310ac484b7e03f8ae85dcc8c5bd9e4f00e282fa10a

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7531cb784bb2f63c1402e74891de37fe12bb23272c11ff7cf9c1536859e90233
MD5 979242aeee4323f2f82ebc08153e7465
BLAKE2b-256 2b5dd57b9eab639a11fc2d77e6f80442783e2f98faca8bf38c4f939ce89bd6c0

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0554e391d0aec28b8ed3588d5c794958907b0130630294c43d8d8309e939a9ba
MD5 ed86fc6de61363ad6b930c2d9ce40a4d
BLAKE2b-256 55f88ee15db5fa7759dd87735e55d8d1b0cfdcb15112cf40cd327cc08957fa61

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d955b06f45447ffaf2872da8ce5208fcb263ec54c0b87a66612e46cc3d215ad8
MD5 2f4d37b65271af7122b16048fffdf47a
BLAKE2b-256 bb96d44e277f064e34854f27d46330b7725e1b6257bb073981dc5b3b185146d9

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 45201145bc923ae04c85a0ddcd99dc2772ba4017cc024d39e8d8926241487e46
MD5 9566488a619d0d34513f2dd9aa5ef1cc
BLAKE2b-256 7c4053e33bd6595ce007b0d84de6ebe33c5aba734fec67dba5bf8c244b9a6248

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e0fcefda60793cb5defd46dd302458b8fb4f09df29bcdf8e2939c96a84526307
MD5 6cf1b34883d597c1fc05a1007c6f62ad
BLAKE2b-256 515dbcebc5ac68ed5b724f6157b27606fe98a81f16002f01545a0950283841ad

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 70bee6478e85865770556a48876faf7a98a0fc31bd56da80a5ad77deee85541b
MD5 14fd5e66664bfab8493e02fa753ca763
BLAKE2b-256 e84a78bdf5f20261a5b5f317ade86ccc7c9b71ce3ed1ca79c062d413995af339

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf3e94268ab006f7bd0969e432de689c06db049efdf6b2b136729d8d1f612921
MD5 f50af03d5c065cf15eaa551e271c79b3
BLAKE2b-256 b781fb5117416ae966d483a9746311598d1d40ea60fd9c7e5c7a0095287f1614

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b828ba3294d50dc50274b25204c68b232fb0bcf49ba913bf928f27d6e95bd94
MD5 0fc1d8c08726b72d11514c67f455230a
BLAKE2b-256 f78727e8b34bc3053a4e30251e7a4664a2fb79c791907c0cd48de7722744edd9

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e3efbfb64a4847d697686a1e2ed28cf3327b5158d5fd8dfefedc6dc10bf04e7
MD5 4b201c41bd47eadbb328b7a9932cc9b0
BLAKE2b-256 751f31bc32ac87dd6916e146e146b51bbb846aba6a5c889bf282bc5c4c8f3483

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc930e16269dac12f96fc1e6c7bf19237334898cc3d5152aafb993662e9c5acf
MD5 920714ce4a4a42a13c67602b1c9f2987
BLAKE2b-256 eba8452221731546d619a258dfd463c4744709d4f07ea023e7429d8ea7898c5c

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12f46df8aa2056ccaec7b94cc88585aa8604a0385c8cd15505a8aecd1c8d9d16
MD5 ef5302b9ffd7a6b953f6e8143ea6740b
BLAKE2b-256 c617fc43787db4c9bcc16f82f5fbf155bf18305a83ca4afc4cb75b7d3285f46b

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dabb9b6e8a05c03bf93597ebff1b1950c0937fed9f8bc2cf2c3788b031ad1766
MD5 0a5872db2158edfaddee956780ef7c6e
BLAKE2b-256 fc77e6e4dbee07f8bafac9105079ffdd56b56dc30d4b962002df2c8cdb437713

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 62b2c9e519b37f7ade5e4411364a23c817c933491d14dae3ff0ee00190c5a683
MD5 a72807f3f13738aaea929ef029142310
BLAKE2b-256 01244fe2d62c641d8d4d90fe3b85cab23301c5b09bc1927ef074498484c9d47f

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fab98439fe8bf7caa075d526cd9ed5acba54380c34a2aa7723fe63989d9ce592
MD5 0b27b277de5bd10d9c4edfc0213b9113
BLAKE2b-256 7c4770949169a482bdc49cfac47cb096563a1cccdbdde3c4651b39b99c4cedb1

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 22.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a66a1a43c0b7185cf4ea2f01cc819e18eb0931b0ad80a62fa152041e3e9e4517
MD5 7cfe72091309be6d4bfd3b776af78eb3
BLAKE2b-256 14892833a41fac712b21a347827f350b6d5a6a7a4d7897ac1a243770e261366f

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87ac93ca4844bbe794c627743f8f986e079a2e94ff9c632caf860b5f3805a608
MD5 0eee6f2a23519fac68fed6336442662d
BLAKE2b-256 e0fbbd3226ca68dcb4cf668c298d2553c0166a4d66bf5d713c40d69eb3ed3174

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 987953a3eea8f184a10018205304c302852f468081aff735d1fd9585188b0306
MD5 e65abb549b894a3f803a96467519723b
BLAKE2b-256 4b6b7832de2da4d514663bcfe3b3fe8b210181556f3758e75cafcacddecf4de3

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df6fdccd8e291107912f98230255901dad0a6f0be2736590b1cc4b867b68bbf0
MD5 91ed375fe5b66b45fc1d4341dd6aec5c
BLAKE2b-256 a642ba1b30db9b67213641080af39126948c6422fd79bea91bc2ff3313f6ac58

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd95356fd6c5749733d4fcefba76f9a452f05b2bfc2b94567259eb8285df09bf
MD5 7951efc588ed9db4dbf6c2c34a9aa1ba
BLAKE2b-256 fb46a754db410599c17974647030126c57b9772c77aa5423107b254d91e271e7

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c7be95b8c3419f48d8cfaf0cc23f393a396908e7757957a72720e5aa3d713e0
MD5 49ab466edb43b28e3e3879d2b98a0b46
BLAKE2b-256 d8f8e19829b0c294e7b03f2084d43739866ded105883bd0b7632c2f1da64769e

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5316a19815658e7bf1d864b7a6525a13fe80dab05d8706e258cc63e5ec5fffc3
MD5 1cb8403f107b6835e39162a87c06a84e
BLAKE2b-256 e10da22d7dea5cd47536c2948dbea8820c4ccbe0a0a0ea39a3739b8ddeaa0bb3

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c28af3309ffe469e9219cbdf9ae30d83b06b4fdab34a7d045a3a7bc3917938d0
MD5 43a809aa0d1f215ff3bcc85ab4ced015
BLAKE2b-256 d3de65777073b0c34ecfb075cd611090b20205fc30911901f2fdefe900abaf9e

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: srndcipher-0.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 22.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9e60ed72ecf4023309c982f5b85705c7c36cc731a5a9e4b0dbd1dd432b84046e
MD5 d791820d15b322360d55b90d6e417100
BLAKE2b-256 210dd482c7cbbc1f6195763f80d974208260e1e6f5a5d8553b79134084b8228b

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17db0e6772116f17ba71a4dd2de698adb504587071b8c9c2de564d71d17a4867
MD5 c831145dda45f8f2bfa27acd062e9e2f
BLAKE2b-256 11747036983da7190c54208d00ad5a3a013e6ed20e30b7732faaec9e69136000

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d012dc5a70eccb6bfa99e6d1ff2d7e4a39810cc800ec31336c8a1c3e81e69a4d
MD5 8f251dbe4130b0be75670b4c6aea4148
BLAKE2b-256 c98d30617f8c945ab0131d36d7e9615061f972253e37860ec747ee2285257db9

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 898b3adefd303d95d14a87ee221c172bd6c346b98d8604bf84432bf18f67aad6
MD5 e5dfdfb857de4ece433bd2e52a278f22
BLAKE2b-256 c5e748121f0ea021b3060c6b0f551705d4f708ae232b09e11baa9cb9c604fbee

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1f54cf4f95eeab192971588f04f78755250d16bc1d85e17a5f3f22ebf09cb19
MD5 78972581f0e485d2abacc5bfd00a5f90
BLAKE2b-256 cfc5a20f190c95c7dd5e3a0fd9f822b82b8a0a77e462f62f50c382b0a296cf15

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4091e52673cff9fce75e59dd12f88354f767ee9e08e45a4dbe5cac33b649355d
MD5 e71206057160e7493f4669764733389b
BLAKE2b-256 f998eb9f22d6612dc63eb3a9012c2b9c968fc1f6facdc834b5e392e5e140ce6a

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c132ffd99b96020e318785b6efb70cfae5fe78c3ee1787bf96b46c281b64c7c0
MD5 9bf888fe2b96f58bd66831c80654207f
BLAKE2b-256 e4815f3d1c718851dbd545c89ba58691d1e09c493fa9e1260a3a156673f79046

See more details on using hashes here.

File details

Details for the file srndcipher-0.7.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for srndcipher-0.7.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e3b74155d601bf05efc082c39404fa6df193f41c3c4d5a4660cb2701ecf1cda8
MD5 55230e972bd43765424f1d0352e01931
BLAKE2b-256 aeae9154cd5d0d03c87e936452dfa7207c14b7760bc8efc6fccbc13d4c1199cd

See more details on using hashes here.

Supported by

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