Skip to main content

Simple, reusable and optimized XOR ciphers in Python (core).

Project description

xor-cipher-core

License Version Downloads Test

Simple, reusable and optimized XOR ciphers in Python (core).

xor-cipher-core is the core of xor-cipher.

Installing

Python 3.8 or above is required.

pip

Installing the library with pip is quite simple:

$ pip install xor-cipher-core

Alternatively, the library can be installed from source:

$ pip install git+https://github.com/xor-cipher/xor-cipher-core.git

Or via cloning the repository:

$ git clone https://github.com/xor-cipher/xor-cipher-core.git
$ cd xor-cipher-core
$ pip install .

uv

You can add xor-cipher-core as a dependency with the following command:

$ uv add xor-cipher-core

Examples

Simple Cipher

Use the xor function to perform the simple XOR cipher:

>>> from xor_cipher_core import xor
>>> xor(b"Hello, world!", 0x42)
b"\n'..-nb5-0.&c"

Cyclic Cipher

Use the cyclic_xor function to perform the cyclic XOR variation:

>>> from xor_cipher_core import cyclic_xor
>>> cyclic_xor(b"Hello, world!", b"BLOB")
b"\n)#.-`o5->#&c"

In-Place Cipher

There are functions to perform the XOR cipher in-place, on bytearray instances:

>>> from xor_cipher_core import xor_in_place
>>> data = bytearray(b"Hello, world!")
>>> xor_in_place(data, 0x42)
>>> data
bytearray(b"\n'..-nb5-0.&c")

Documentation

You can find the documentation here.

Support

If you need support with the library, you can send an email.

Changelog

You can find the changelog here.

Security Policy

You can find the Security Policy of xor-cipher-core here.

Contributing

If you are interested in contributing to xor-cipher-core, make sure to take a look at the Contributing Guide, as well as the Code of Conduct.

License

xor-cipher-core is licensed under the MIT License terms. See License for details.

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

xor_cipher_core-1.1.1.tar.gz (13.5 kB view details)

Uploaded Source

Built Distributions

xor_cipher_core-1.1.1-cp312-none-win_arm64.whl (95.5 kB view details)

Uploaded CPython 3.12 Windows ARM64

xor_cipher_core-1.1.1-cp312-none-win_amd64.whl (98.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

xor_cipher_core-1.1.1-cp312-none-win32.whl (93.6 kB view details)

Uploaded CPython 3.12 Windows x86

xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (391.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl (411.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (489.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (407.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (223.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (262.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (263.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (236.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (236.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

xor_cipher_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (194.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

xor_cipher_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

xor_cipher_core-1.1.1-cp311-none-win_arm64.whl (95.5 kB view details)

Uploaded CPython 3.11 Windows ARM64

xor_cipher_core-1.1.1-cp311-none-win_amd64.whl (98.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

xor_cipher_core-1.1.1-cp311-none-win32.whl (93.9 kB view details)

Uploaded CPython 3.11 Windows x86

xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (391.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl (411.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (489.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (407.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (263.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (263.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (236.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (236.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

xor_cipher_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (194.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

xor_cipher_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl (199.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

xor_cipher_core-1.1.1-cp310-none-win_arm64.whl (95.6 kB view details)

Uploaded CPython 3.10 Windows ARM64

xor_cipher_core-1.1.1-cp310-none-win_amd64.whl (98.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

xor_cipher_core-1.1.1-cp310-none-win32.whl (93.9 kB view details)

Uploaded CPython 3.10 Windows x86

xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (392.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl (411.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (489.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (407.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (264.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (263.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (236.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

xor_cipher_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (194.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

xor_cipher_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl (199.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

xor_cipher_core-1.1.1-cp39-none-win_arm64.whl (96.0 kB view details)

Uploaded CPython 3.9 Windows ARM64

xor_cipher_core-1.1.1-cp39-none-win_amd64.whl (99.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

xor_cipher_core-1.1.1-cp39-none-win32.whl (94.4 kB view details)

Uploaded CPython 3.9 Windows x86

xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (392.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl (412.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (489.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (407.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (264.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (263.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (237.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (237.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

xor_cipher_core-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (194.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

xor_cipher_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl (199.8 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

xor_cipher_core-1.1.1-cp38-none-win_arm64.whl (95.5 kB view details)

Uploaded CPython 3.8 Windows ARM64

xor_cipher_core-1.1.1-cp38-none-win_amd64.whl (99.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

xor_cipher_core-1.1.1-cp38-none-win32.whl (93.9 kB view details)

Uploaded CPython 3.8 Windows x86

xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (392.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl (412.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (489.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (407.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (264.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (261.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (263.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (236.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (237.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

xor_cipher_core-1.1.1-cp38-cp38-macosx_11_0_arm64.whl (194.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

xor_cipher_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl (199.6 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file xor_cipher_core-1.1.1.tar.gz.

File metadata

  • Download URL: xor_cipher_core-1.1.1.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for xor_cipher_core-1.1.1.tar.gz
Algorithm Hash digest
SHA256 882426e0cf858137b016e1ff79c8adefa8b9beb5af5f8265a17557335af0ffc6
MD5 fad160076c65302f793086fac53844ca
BLAKE2b-256 43e20ff8b9af632a22f0fcb621afeab2f29f788ace4b5476fe6fc31e06bfe3e0

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 e26498caf8982212b2efda7abb199fa47cef08f8afc5c5c4274e6407cd8b74ef
MD5 06af92860ec32ccd118074e42ac93e05
BLAKE2b-256 16cd9b8d34182c62cdb6d22c6a63c61ad5c96ebcbec004f56953b30ae55ae715

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 1a7715567bcfd1eb3b70eafe88e72f30130b27b784481aaac0c49ef63d1afeb4
MD5 b968e1c2dfefcf7d4b198df43dcc4128
BLAKE2b-256 0d00019a0edad994d068a72d9c471b9fb71bd9ac8c8e32c9bd39ee7e709649f8

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-none-win32.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a2e2971fac34fba15dc9c98d9a89397d331f55870b46bc233c28a4424d878897
MD5 eb830e64cf0927949f28df3fc8e6be4c
BLAKE2b-256 1be600ce4cd4e02624473f3d7bbf3774adacd7ea3b250404491a483da49610e2

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfe8cac00fc22cd5304055b1286a191c36355860ed822204dca7e367c9ca1250
MD5 0740492f64ce81a3656716611b0ea025
BLAKE2b-256 e4e00bc79ce9e45b5ab56e9026378c7b695a53e1348c7e8eb8cfabdf067c94f5

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7362432082769656e7f244573958bfb0035f5ccf52ea40c0d6092ef1c19b9f8f
MD5 9e780c4da9d92a706809863d6dc54827
BLAKE2b-256 b4a77071c72d3e193987efeaf99c30e776f30fa155654a1d729214bce19ee2c5

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef2bcf190b2b3a2f01dc4c36d73e5366034768757c8b06b4ddeb2698d5238029
MD5 2950cb3f269865bf6ff8132a7339f4cf
BLAKE2b-256 5d19fd561e599cbb48ef8d8db13b45bf4f1b355d93ebd68db73021d689fc44a1

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac6bd9b49d02968f4cbede718740c5b90becc7979f79051e5ca0cba77426b58f
MD5 713c0e535b9b41e4b63005e25765f13d
BLAKE2b-256 b6c8c8897a6ffa707d0d73b1770bfd081e38696b7de0725a94b27aab4aec3a3e

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69f5b343dbe315f198c1be56706523ef8180eae529cdde7793dd2da4f54643eb
MD5 f7c0eb9bd9e56c8f4af825e0553f5473
BLAKE2b-256 c4d9a7c36526b3e140c668f3673252723f2e94e27e48435a5f3322518bb11b1b

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 454a4c20962a10d06ff5065afdaa8479aa5d03f36644252dc94f9c92f488d692
MD5 e05dafac41496d0d8ed6c9f03d1ccb80
BLAKE2b-256 71f02f61d205683f1e9750a30c45c7162af5bdd5f8089b64579693c363f0a062

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb35e1d256d0f85997986bad73e0d3806f8773374a2b031593df70eaa8ce9253
MD5 9d54a2bd4bb0c0c0d4b2a3744756cf89
BLAKE2b-256 f3fef6a60c05a07fbf3694711fcf58da514e94cb22fdc04401acbecc1d2b0911

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e814bc8e9a247e422b1f50cc405121bb95f2f7d490fff861a539435781c25607
MD5 75bf46b906a88f00a68a02926c252c83
BLAKE2b-256 b9105cf40730ee46ceaa7dc8e2bd1484826bf13daf87dd35400bd25df8edcdf5

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14f04ce472f5a6f2d006d61d23dc8cc93218c50145327374b2790d529e401246
MD5 234562d45857addd6c1e0f1e3fbf06f5
BLAKE2b-256 71577fe32a12435c03f0158a78cd55044c4dce269d72fec2bb6ee212281e1039

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2930820d8a2f0c5f3f80b8aedf5fa203e53ccd1703d101ed5c4323d9e32cc03
MD5 239723c3557f966a72622f7134b6dcfa
BLAKE2b-256 fc280894a6234e01da6d967317d09d72bf95d5df1fb1618eec3ba83bc381a3b1

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 594e8cd49bd9c6ee9001c22d782fcc060e238a1323cc9660fcfd1e2ca4941c0d
MD5 1f121b4fabfd79fe0c5d37f0a465479b
BLAKE2b-256 a76668c499c684382cbf25f31a911fd4cd5eb5b8456c600c13ff814c0dff6514

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d14ec8b6b3a746cd76bbfedb79417063364e58bfc6bc6d815218ee4800de4541
MD5 2d5a09ec09cd03ed4d753bc6358168f8
BLAKE2b-256 579b7f4b6f1d03f6d108d3e177178f02ac0e7e7bf69101cc9cac44d002cdeebf

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6dc706f53cb2035bab1426c532d734cff2a0ac799d8dd4dfc528629addc9843
MD5 fa477f2d73ecc42f875fc0b76e1036d5
BLAKE2b-256 be8b1e06eb964e931ad29949cd97b667f7a50ce9a9f48c6df5810b0d91acb7d1

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 f32f3c2d846ce4cc1d789323a662ad810b3a98145d3a270af3bd868aa5bd329d
MD5 02cb817004fe805b52b696413d84d1b3
BLAKE2b-256 09d66b4c80e2f3817e2177bbd500bd65bc155701a619e0855c012dc04aab6425

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ee18f553628d76bc19284612718a5cffd19c85327e1d265a64c4bb1bf5e7e001
MD5 92f21caba4f866c662ea89363645da01
BLAKE2b-256 7fc441007ae19e2b698e23789e3850e885bfbc816991025c7e8f67cc6d1c6117

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-none-win32.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1dcac9bc05b0a3dc8b10213a9958d88d7ab3389a2d7a11e3c093852b978a5c6e
MD5 73f36dce9386e9722396008c77d35f2d
BLAKE2b-256 451566c446e9f72a23f591c74b28273e2e50837a35d702f98b146df8edbdd460

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83e1989fe86aee44d23bca4e1da9a34778a07d1e868fbb52002b13241c1af6a8
MD5 7341a2ac7be2aa36b67942c60de78ed9
BLAKE2b-256 e3f8701b3fffec0f68c6fee047b549a96aa3af43e8b04bac61a94af6f9b0e3a5

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47514e380bf433cc3603f26e9c2f994dee38b06abc76fc9e266127a0334a09b2
MD5 5ca60a6f8553cb9b75be5a7f09770849
BLAKE2b-256 61ff0230d7490c173322b38b2dda4490766f929e1f843d9e994ebef325d49dd9

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2af09d6ebec3cf5cb7b744428847f9e36f6ca88b88ea8d8525c13880fae95ca9
MD5 8a6c1dcc6882b9001a11df3d00a40d99
BLAKE2b-256 66a4b5277939dba808b55f4681b0d14806b8ae31b5393d6d57080a0cd5881c10

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb62986d2c6e70f0a5686b3437c5d656c4ffc9a8f386e2723129b07e606995fc
MD5 99a0a230ad9e251c2a489a1eb4678159
BLAKE2b-256 e3dd5963faba7e6434d5b0d4fd36ff021569fafc02a736238688e0d48084a761

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b57f384bcaa628daef415d4d97c7cba10c761ae6ff4332b31da28fa878f97034
MD5 153bd046c5306e2406e4055543ed1463
BLAKE2b-256 605b1c9ee7836825191a389b28e35c46cb9d166f7eb9b3440ba5cf6c82d57a96

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a9745ae494c996b2067a42e5385ea46e4515e2e405a14d26a2cd8879c249c33
MD5 5987bd2afa1ed6b5297f7bb418f6c214
BLAKE2b-256 e2bb5d03df4eaa8e4b640721426498f7bb0340ab8a1696893752b38c365f3bfb

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb75d7ec658e894969b80975895b7008cb18438887eee21e6adc9ebd8da0e23c
MD5 60c41832bc830cab45e53bea1d7819b0
BLAKE2b-256 40c55efa8b2f166415ba47443dbf609eeabbb69be479fc0583606c2ac06f04bb

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e30ad0f669b10c5399cd7f02194bcb2102ca6655d64f0695ba537d391b0876b7
MD5 ccf776a6dc380dae098bcbd246aa9dd1
BLAKE2b-256 96c6cb4d3e738a592d9260fa6d60ee83ac30db06192521a23bd391294fb0f539

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11dd58d9b0d8779716566af6540c16a0b255f60150b11a43ed047cca5781c2ba
MD5 b8b8289e2d6d22a7a245521d46af8b4f
BLAKE2b-256 c5ff4fa6215f140b411db5320097010952934a2d33a234bd14c1e913157916a2

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87bf7bb8d0e2217f96540ff6931a581c3c3394d069cf723954bd0678def8f96d
MD5 54add9f2f2d5db5a6011c2676d7e0388
BLAKE2b-256 3f7de3667415f07e9efc98043d5c98888ed681db9ac27e29f8f631ca39dd3491

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 464db73c00f5e6b1759c7d593b76b2a1e42b4d35df3c68a418a92ce3a0fdcef2
MD5 9346ecfefa589ffecac7ba4d6a05a94d
BLAKE2b-256 e1ae904a1e7e23e7916dc83537e7ba1fde6ae5c78be9241a9da2f1a516f75b28

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ae78ec6be9010645f7c2f37847e9df084f9ddb0478fada54f471451a924bbe4
MD5 27abca22cad34f5b89e4374f9152bb3f
BLAKE2b-256 38a928fc42d3635fe77122ea3594d3497f7eb4d386ce1edecc643bd1ae8b577a

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfad2483f3deed2133e19f1f924cfc61c3ed065c85ed9b74c3f8dcc1dfe327df
MD5 a0cf0665ba5fa33ec7d99b750fb36b6e
BLAKE2b-256 455c01fe2a39594ff79fa7b24c3e1e275eeebf34664dcc241273d489162d7358

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-none-win_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-none-win_arm64.whl
Algorithm Hash digest
SHA256 a87ead02a639ab392a9f1d67fcc9c860ec4670352355e52cf6d6a7c0c2f4d3c3
MD5 853cc8e002b2ecd62f5fe700e33add47
BLAKE2b-256 dac7004aa0f18bbe648fcdbe07623d55ca23a97a3b91b97c355e1eea2f134cf4

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 086c5327119ef4d99802032fa27dd40228ab2ea1692c3c5f908a718df2150884
MD5 329cd97a3ede5e1eeb6cea0ec9babd8e
BLAKE2b-256 53511ad5acd9ed2ddd5a2c1b149a8a54942b0575f5a8b9ec7f57d6f4a3537f0e

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-none-win32.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 70d1a8040c7ee8206fc20abb893318c027ee2442c6cc5dfbfadf780c1defb468
MD5 1ed820663eeca93cee37cfa5820c068f
BLAKE2b-256 281136c6d6ce81e341300e3777c30b3db294bdde0992cf5810053be5b1ca2cf1

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8802d5849cc2ec05be51122829233f50a11edb462bc2e84bb467c82f04c0bfa
MD5 396223cb0cf8c9f70de1e3533467e59c
BLAKE2b-256 4d8e2bab5094ff5e854b308e553036e6b247375ecb57292c7aee6c3d233ecdaa

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9185d249558fe72600ca58192828fe74c816fa89f2f4076291cc35356055dd0
MD5 e75be5ff19295d49b76f98c87b70efd4
BLAKE2b-256 d8ace0fe76ff525a0ce18707ee8451fdfe4105481b7c7d93a3687fd60a9e2ab3

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 379e6a434a00ecfdfef67fd36ddd7478159301560928f66ba0fb02b1bf2756c4
MD5 6cc0bafaec183cabc77b6b021fe74736
BLAKE2b-256 cb7804f006af6cb94da62446d9ce85cdc0d1eada619f52370830dc7b7f0de842

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba72780595d6a1c9d28f47f012d2fd7aa8637a939ff9364b13ce0b8c4963fc34
MD5 7dffa5a3d979bbe61ffe8c50ba766c06
BLAKE2b-256 27b46241b7e629dd82f9388d339208cdc8a9c15f33deaa5a20b641004b333457

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6e132632e64303468637e0f19022dc99730d2290bc9e44e9c693d8d97d8c130
MD5 f861960245189c8b4a0aa8aa2c079866
BLAKE2b-256 53d6d78f7f2db669312c0a4c58f88b2849d95d7a62f1019d7ad32024dd31cf7b

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58f0ede00ebb57a06812e0b7c99d22eef372b153d8db84ac85e8bfc59f9609ca
MD5 58ddf3890f9b35a5eed79846c5149ac3
BLAKE2b-256 7a3db7654a475c6b1bea7a3975862d8ee60a9ed77536cb696460ccf644b4ced3

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21d266a66bf092f82e9d23c3fd1db8045dc4a40cee7c04c73dc727b4d055c8e1
MD5 7de7a8b8015ae22f562049234d8b433a
BLAKE2b-256 b77798f00b82ae3b1c13bb8efc5a0a6b9bf96b1e29ff56156864e3159dd86f86

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 cb0dca36f1956f57138f00c85a51d10c914cef32980a4b3e2ba487e20e1b2e90
MD5 2d356d779eeab71d3295e2689284ed2e
BLAKE2b-256 0e146626e0fea0d24edee4f73ffbd00ea51d4e274dfe4b2b7acce9202b5acc9b

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b302de8322d352dc7ff5eb4edc850e33087f0a29a8271a9f7a9c45cd3f4caec
MD5 bf596aac5c19ac92211ce0e096b2c39b
BLAKE2b-256 84af95f9d8fcaedc52ec40228b08f92ae1517aadef52cb64cf5b2249be2138de

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddd5411848c681eaecc62d3cfb1b3712ed84f599f9572af5278bbfba14999e37
MD5 8fa0459726629d50b349fbe9359a57ce
BLAKE2b-256 9a87b25f1d41837b51b9e4bc687f69e4240a55745f2cef56fe288a078a44d47b

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20fa9c6fa3d6955ff4f15a44fc0c4af85fee37c775e5b86302537bca76f01f8f
MD5 78bc183f6f2399937a05a0a8301fb5ec
BLAKE2b-256 c8a8c1bfa13899cbdb1bd3002dcdfa41292a5344e6562f9ed9ff6dc1c991006d

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f508ec166b27182ee3958001fb89a709e42f7c2cd840b5f72a800a237cb782e8
MD5 7d0f1bd46d17278d9370eb3dac1eb232
BLAKE2b-256 2a6531b8319551db8c961a9d97fd9a8ce78394e0c6e0b996585c9570c2001194

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ee4783f567404e65bf54fb1e92919938e9c356e699209309587c5f0f956943a
MD5 34555367ae55e97f01d74990f36fdc3c
BLAKE2b-256 d42a231f7f017d1cb773412f2158bca397588d3ba06f133786df7612f433fd80

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-none-win_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-none-win_arm64.whl
Algorithm Hash digest
SHA256 941800c65ec61060410ba83d84be1955515d8ece44b3c19ddd3f9612e6d66a00
MD5 1d26952d53f9b9cccd1163fe73e8e366
BLAKE2b-256 d3dfa0fb34b144a2576e3e07335d14387fa7e2704581a1e086768986e00c4d46

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4fffca57e5ad455151bcea5a7429a105c07146723e4035116c36e46d7ccf341
MD5 60da20db93a8ec1c92c01fd93ce02447
BLAKE2b-256 6834b381d0d24f7d46f45e1d9d7bbaee22cbe739d9d70f75d1e9e6ece69a2bb9

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-none-win32.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9f1b20919a7e273ec7aae1dd1206a5a2978f21599120b63a1402f9a19bfae81c
MD5 f0fbfcf5f0e67c940b6baf00c8e0a45e
BLAKE2b-256 93b2fba7f3065f1d6b61904e37e788e35e0cff5ecbccd05d82f590a7bc683f0a

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92e6be913bf9f88bcfc1486614a160a2cfab3225972a989c2fe9bd065638b8e1
MD5 7b0e811dce974899b01028dab0521749
BLAKE2b-256 fca79bdee9eee6d494a5a5173da3355198a631c2e5c8d3159c2b417d2939ccad

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7800e48b9a6c1f703c89c845a2fda68ca4578e0cce1924c75bd20469c599472
MD5 e3dd1e1a3da95d159a6872bf903e95eb
BLAKE2b-256 8bc4bd0faf61fce0a7af36cc082b5a9973fad1ffd7af366c8eea7d9c2936ff96

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd09b3b204a72944b60fb4663e5e229c99f773cdadf7148a9fec8e066f3b4398
MD5 9554e8fb193fa0ec5eea6bfa533b7ad4
BLAKE2b-256 21f04885f05f5473c513f66d1473c56ab79c02e4ee23cfb46e54eefa03aa1bec

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e30e3914c6c24988b1ffdf512ee1a4688420313fbfa79701d2f6768424e8bfc0
MD5 4b9d94d8d6261b6db13e9f337cd9c19c
BLAKE2b-256 cba8d66fbe518f64a1a1cab6d53520b479e654736a143f6d47d1fa2a30441f85

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85af1d4e0533d5aa922bab0c3d301b566f7be934c3ddd9ba2f2af4425f214443
MD5 8bdcbaa17c5aa5eb89c7f5058c49144f
BLAKE2b-256 20f47c1b001641781e1141a80f753ba68bcaa4eefc5e41a29f7bed9b846012c2

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9971209ea64f598faa3d45879d84d6cdff50eb2d49eede28a24897542b1c8acb
MD5 564c847ee661bab35d56c5a6923b51df
BLAKE2b-256 c8eef07d81e9b9e618b8ea96e6d263fcb504702426935ab5b6f170c939c18fc1

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0ff1214e8b4c658cd65a102e83bc274a186eb832601473e5400fb47d73e5e37
MD5 5757df5c1e59864116916cb900f5e168
BLAKE2b-256 9bb0be0cfc7b2274247ca5d138c4dfab8f17727d4cf36211085219f01052b737

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0f6ecabfefbdb54727d33ebf1a32a54f9521212b1dd59c24b3dfcc87a08a6e0d
MD5 d58a1dcab561dc44784c663334c01364
BLAKE2b-256 b4732a8544f6aed04b2a3098defff8640f10d836a887a396af8aad96eb0a72ac

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d009474fbd43326c07b4f8b6a493701d159a46b8d45974c4e1ee3d8e96dc68d0
MD5 fe7ed18a1735e7b30781065cfc609bde
BLAKE2b-256 2d6f2c8ee7f27aa4982650ff868559653aafd50c60dbb4ea896b770524dc5d8c

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be9e442d27b95d6ea0a1cefa4cc465bd5bd9939c241fb6132977d90faf4eee8f
MD5 21c26df1da9400dee7fd7a96672fc942
BLAKE2b-256 8c64801008558f916913c9a7ef0527e235038aab110ffe7df7af9c41608f3f03

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4be8ecba597ff6e698afe6cdf1760ddd01fc7e87d4cf2552454833fe933bff54
MD5 cdf8a3fc013f85d308ce09412753726e
BLAKE2b-256 5512ebc16067f9d43f7aeb8a077fea7eaf941d6024a0850adf21e15f7929cd81

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fa68cd203ef183db209fec8228ad4627e0b063c8ce84175b7d337580e269b37
MD5 05d1661eebef1db8b6b63efb77cf82fb
BLAKE2b-256 63c079442871fad8d5fe9d7907315a9ee8447467968f2196c52e0d8bda92fa5b

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7accfda1d78e6518d3b9be1368276887ea1af71f5cd12e050afae72f5099b148
MD5 b1c98b06b32fb9cbe74aea8c5108a701
BLAKE2b-256 aeae3757c91e56165bb6ad11e182af8c9f69d77dfce1cbe560ca30c31f0a0d53

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-none-win_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-none-win_arm64.whl
Algorithm Hash digest
SHA256 5a780aa5114d9f8c052ad4b8e4c20046e1650603b52c0a2e584b78c162326317
MD5 9069b8dca41cfbc8ffee6faa61bae6e4
BLAKE2b-256 942ba1b5afd027aa390779b685d09f8efe68899e9ae692c2e214bea4fd34d668

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a5a0b83d9f68b5519f72f63f24cb77e8abb8d4a7a99291d13aba6db545c9a4b5
MD5 9ef237aaa1c0293ce34ba616cd95bb88
BLAKE2b-256 f8616153fa392fa2cc8506085f45afecd18fb7a74ff33a3526292e108d3e76ac

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-none-win32.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 597f5664048ab7a7cf7e0507e6d133d97d9bd3ac27a7ee9de4c4fbbfe02898c8
MD5 51864c1c6b00324caa28a93e32710261
BLAKE2b-256 5cb4ddfc427d3bf87787e1e81881c5212696981ff21f487b7e9595453a069480

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e31c605e6a3f0479c884a92cc06a334bd4c22edf0e19ff2eea8938d72b3540b
MD5 0fa31d6ef7548d9c0bf88f15eb8c7090
BLAKE2b-256 1c742a216567c625d3b7a4547af6b8c08ce36f42cdfefdc4ae5b48189f8aea29

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cb1723ee34f80021503272cbf4c6e6a40372fea544c43737d352dce07368340
MD5 de52b9a3a4f6ac36519fd4aaee991234
BLAKE2b-256 2748e692ae1adb461bdc2568c41e44b3672631fca5b35605f8da4a4702e2babe

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df30ca281eedb3d6387f07fc6252ab8a513bcc4989390b24fda4c5f7230d26fd
MD5 c8bcdba864003ad9796bb1baaf86f4bb
BLAKE2b-256 271e2e32620fb7628808288e778651f46dcf092af4891f9c94905ef4cd90047d

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94e7dbbb8905e17494a9920240a5ef941e75485c84e3c7ba4e957cfe77e4d429
MD5 83cbc0803129563fa1d77860beb760df
BLAKE2b-256 751ffdaadf7adfae93bb20fdace0fc93c13046230412af28de4a06ce84fef254

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92c688f5622c9ba5c5dc7052302f8db023ba660ddd0c7cac01dbb24962beec00
MD5 6f48c748975003d8972347573a93b2c2
BLAKE2b-256 6fd478284747e78215b996bddcbb6c9e175e05bd3033207980f7b9dc97db1d19

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c95e837fe670cb6ec5a9d393e3811bc85eb1b75ebc90aed515697743f1d1b8a7
MD5 e81d3e9cd3e77d9684e8f22b1ef200f2
BLAKE2b-256 972f69cf91376972247696e9880e745ed04ce06d521cf44878c3fac966958528

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 317563fb33560e75f2f29d114990614a44caa08000270cfc8c1cac8e6416ab53
MD5 f2429bffca6cf9e537c119317cb6d588
BLAKE2b-256 005ca610b71c01f74127e809f45a919bd09a184a3fa414ff541b8202da928074

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 8bf7644812f78b61cb67abb9cd4f6eefd82397ed9422a6c8bf2cb939349eaf30
MD5 b961206eaa592613afb3a82a40582d0c
BLAKE2b-256 2fcb24be6334f39257ebf13570b6638b5589535d29f122dfe917a755aedacc04

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 176479ac8d5e7a0a62b77ad8ed90ce1f66d75f03424466a2c1459ebd9c74de50
MD5 dad97ffc681e5e488c90712c582b5134
BLAKE2b-256 06db6a98a89b2a34a5d75e827afaccf68c67b619f334313e987f092cc3ffce6b

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 513636acfb479aa4eccb740880c784fe1a929fe978c0e14e999e10c526c1ab0f
MD5 5007545c51a1783e89e034fdf8bf9960
BLAKE2b-256 48b20660d3d8ff78cd5635d468ca0ac4e1895cdc37f77bc201dbf7cf232f1dbe

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a69d34d9c2f82f9a7e8f83d84a4cb125870af050424c06863067567d212ff9d
MD5 8db370ee014814031b34f29771f34602
BLAKE2b-256 73c77aae729c62d6dd194dae0b11110d9587d85dbb880a9d0e49bde4690fba9c

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8e32fa91bb162738840fe01788d6fe59378a216b610e8a72abd682b857bf25f
MD5 10b86e96f237d018e169ccae305b75e2
BLAKE2b-256 8f05842fc2a2e8d1a32240d17841f2e5dccfd5d7f7c8510de5770734533607c6

See more details on using hashes here.

File details

Details for the file xor_cipher_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for xor_cipher_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ac5e101403b4c1d4e11e77cb90944535700f2216caae5cb865608272c6c2a46
MD5 f795306ba011c9b62c3ad059f606f54f
BLAKE2b-256 fcf9c9fcbd6f6000ee1015d8f234de01b25de30b3fb9d0c4f6e3f5f8798e5a36

See more details on using hashes here.

Supported by

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