# `xor-cipher-core`
[![License][License Badge]][License]
[![Version][Version Badge]][Package]
[![Downloads][Downloads Badge]][Package]
[![Test][Test Badge]][Actions]
> *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:
```console
$ pip install xor-cipher-core
```
Alternatively, the library can be installed from source:
```console
$ pip install git+https://github.com/xor-cipher/xor-cipher-core.git
```
Or via cloning the repository:
```console
$ 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:
```console
$ uv add xor-cipher-core
```
## Examples
### Simple Cipher
Use the `xor` function to perform the simple XOR cipher:
```python
>>> 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:
```python
>>> 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:
```python
>>> 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][Documentation].
## Support
If you need support with the library, you can send an [email][Email].
## Changelog
You can find the changelog [here][Changelog].
## Security Policy
You can find the Security Policy of `xor-cipher-core` [here][Security].
## Contributing
If you are interested in contributing to `xor-cipher-core`, make sure to take a look at the
[Contributing Guide][Contributing Guide], as well as the [Code of Conduct][Code of Conduct].
## License
`xor-cipher-core` is licensed under the MIT License terms. See [License][License] for details.
[Email]: mailto:support@xor-cipher.org
[Actions]: https://github.com/xor-cipher/xor-cipher-core/actions
[Changelog]: https://github.com/xor-cipher/xor-cipher-core/blob/main/CHANGELOG.md
[Code of Conduct]: https://github.com/xor-cipher/xor-cipher-core/blob/main/CODE_OF_CONDUCT.md
[Contributing Guide]: https://github.com/xor-cipher/xor-cipher-core/blob/main/CONTRIBUTING.md
[Security]: https://github.com/xor-cipher/xor-cipher-core/blob/main/SECURITY.md
[License]: https://github.com/xor-cipher/xor-cipher-core/blob/main/LICENSE
[Package]: https://pypi.org/project/xor-cipher-core
[Documentation]: https://docs.xor-cipher.org/
[License Badge]: https://img.shields.io/pypi/l/xor-cipher-core
[Version Badge]: https://img.shields.io/pypi/v/xor-cipher-core
[Downloads Badge]: https://img.shields.io/pypi/dm/xor-cipher-core
[Test Badge]: https://github.com/xor-cipher/xor-cipher-core/workflows/test/badge.svg
Raw data
{
"_id": null,
"home_page": "https://xor-cipher.org/",
"name": "xor-cipher-core",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "xor, cipher, core",
"author": "nekitdev, RealistikDash",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/43/e2/0ff8b9af632a22f0fcb621afeab2f29f788ace4b5476fe6fc31e06bfe3e0/xor_cipher_core-1.1.1.tar.gz",
"platform": null,
"description": "# `xor-cipher-core`\n\n[![License][License Badge]][License]\n[![Version][Version Badge]][Package]\n[![Downloads][Downloads Badge]][Package]\n[![Test][Test Badge]][Actions]\n\n> *Simple, reusable and optimized XOR ciphers in Python (core).*\n\n`xor-cipher-core` is the core of `xor-cipher`.\n\n## Installing\n\n**Python 3.8 or above is required.**\n\n### `pip`\n\nInstalling the library with `pip` is quite simple:\n\n```console\n$ pip install xor-cipher-core\n```\n\nAlternatively, the library can be installed from source:\n\n```console\n$ pip install git+https://github.com/xor-cipher/xor-cipher-core.git\n```\n\nOr via cloning the repository:\n\n```console\n$ git clone https://github.com/xor-cipher/xor-cipher-core.git\n$ cd xor-cipher-core\n$ pip install .\n```\n\n### `uv`\n\nYou can add `xor-cipher-core` as a dependency with the following command:\n\n```console\n$ uv add xor-cipher-core\n```\n\n## Examples\n\n### Simple Cipher\n\nUse the `xor` function to perform the simple XOR cipher:\n\n```python\n>>> from xor_cipher_core import xor\n>>> xor(b\"Hello, world!\", 0x42)\nb\"\\n'..-nb5-0.&c\"\n```\n\n### Cyclic Cipher\n\nUse the `cyclic_xor` function to perform the cyclic XOR variation:\n\n```python\n>>> from xor_cipher_core import cyclic_xor\n>>> cyclic_xor(b\"Hello, world!\", b\"BLOB\")\nb\"\\n)#.-`o5->#&c\"\n```\n\n### In-Place Cipher\n\nThere are functions to perform the XOR cipher in-place, on `bytearray` instances:\n\n```python\n>>> from xor_cipher_core import xor_in_place\n>>> data = bytearray(b\"Hello, world!\")\n>>> xor_in_place(data, 0x42)\n>>> data\nbytearray(b\"\\n'..-nb5-0.&c\")\n```\n\n## Documentation\n\nYou can find the documentation [here][Documentation].\n\n## Support\n\nIf you need support with the library, you can send an [email][Email].\n\n## Changelog\n\nYou can find the changelog [here][Changelog].\n\n## Security Policy\n\nYou can find the Security Policy of `xor-cipher-core` [here][Security].\n\n## Contributing\n\nIf you are interested in contributing to `xor-cipher-core`, make sure to take a look at the\n[Contributing Guide][Contributing Guide], as well as the [Code of Conduct][Code of Conduct].\n\n## License\n\n`xor-cipher-core` is licensed under the MIT License terms. See [License][License] for details.\n\n[Email]: mailto:support@xor-cipher.org\n\n[Actions]: https://github.com/xor-cipher/xor-cipher-core/actions\n\n[Changelog]: https://github.com/xor-cipher/xor-cipher-core/blob/main/CHANGELOG.md\n[Code of Conduct]: https://github.com/xor-cipher/xor-cipher-core/blob/main/CODE_OF_CONDUCT.md\n[Contributing Guide]: https://github.com/xor-cipher/xor-cipher-core/blob/main/CONTRIBUTING.md\n[Security]: https://github.com/xor-cipher/xor-cipher-core/blob/main/SECURITY.md\n\n[License]: https://github.com/xor-cipher/xor-cipher-core/blob/main/LICENSE\n\n[Package]: https://pypi.org/project/xor-cipher-core\n[Documentation]: https://docs.xor-cipher.org/\n\n[License Badge]: https://img.shields.io/pypi/l/xor-cipher-core\n[Version Badge]: https://img.shields.io/pypi/v/xor-cipher-core\n[Downloads Badge]: https://img.shields.io/pypi/dm/xor-cipher-core\n\n[Test Badge]: https://github.com/xor-cipher/xor-cipher-core/workflows/test/badge.svg\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Simple, reusable and optimized XOR ciphers in Python (core).",
"version": "1.1.1",
"project_urls": {
"Documentation": "https://docs.xor-cipher.org/",
"Homepage": "https://xor-cipher.org/",
"Issues": "https://github.com/xor-cipher/xor-cipher-core/issues",
"Repository": "https://github.com/xor-cipher/xor-cipher-core"
},
"split_keywords": [
"xor",
" cipher",
" core"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d42a231f7f017d1cb773412f2158bca397588d3ba06f133786df7612f433fd80",
"md5": "34555367ae55e97f01d74990f36fdc3c",
"sha256": "5ee4783f567404e65bf54fb1e92919938e9c356e699209309587c5f0f956943a"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "34555367ae55e97f01d74990f36fdc3c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 199508,
"upload_time": "2024-09-21T10:27:14",
"upload_time_iso_8601": "2024-09-21T10:27:14.237090Z",
"url": "https://files.pythonhosted.org/packages/d4/2a/231f7f017d1cb773412f2158bca397588d3ba06f133786df7612f433fd80/xor_cipher_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a6531b8319551db8c961a9d97fd9a8ce78394e0c6e0b996585c9570c2001194",
"md5": "7d0f1bd46d17278d9370eb3dac1eb232",
"sha256": "f508ec166b27182ee3958001fb89a709e42f7c2cd840b5f72a800a237cb782e8"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7d0f1bd46d17278d9370eb3dac1eb232",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 194286,
"upload_time": "2024-09-21T10:27:15",
"upload_time_iso_8601": "2024-09-21T10:27:15.898625Z",
"url": "https://files.pythonhosted.org/packages/2a/65/31b8319551db8c961a9d97fd9a8ce78394e0c6e0b996585c9570c2001194/xor_cipher_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a87b25f1d41837b51b9e4bc687f69e4240a55745f2cef56fe288a078a44d47b",
"md5": "8fa0459726629d50b349fbe9359a57ce",
"sha256": "ddd5411848c681eaecc62d3cfb1b3712ed84f599f9572af5278bbfba14999e37"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8fa0459726629d50b349fbe9359a57ce",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 232487,
"upload_time": "2024-09-21T10:27:17",
"upload_time_iso_8601": "2024-09-21T10:27:17.447304Z",
"url": "https://files.pythonhosted.org/packages/9a/87/b25f1d41837b51b9e4bc687f69e4240a55745f2cef56fe288a078a44d47b/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84af95f9d8fcaedc52ec40228b08f92ae1517aadef52cb64cf5b2249be2138de",
"md5": "bf596aac5c19ac92211ce0e096b2c39b",
"sha256": "4b302de8322d352dc7ff5eb4edc850e33087f0a29a8271a9f7a9c45cd3f4caec"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bf596aac5c19ac92211ce0e096b2c39b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 237007,
"upload_time": "2024-09-21T10:27:18",
"upload_time_iso_8601": "2024-09-21T10:27:18.905594Z",
"url": "https://files.pythonhosted.org/packages/84/af/95f9d8fcaedc52ec40228b08f92ae1517aadef52cb64cf5b2249be2138de/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b77798f00b82ae3b1c13bb8efc5a0a6b9bf96b1e29ff56156864e3159dd86f86",
"md5": "7de7a8b8015ae22f562049234d8b433a",
"sha256": "21d266a66bf092f82e9d23c3fd1db8045dc4a40cee7c04c73dc727b4d055c8e1"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7de7a8b8015ae22f562049234d8b433a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 261929,
"upload_time": "2024-09-21T10:27:22",
"upload_time_iso_8601": "2024-09-21T10:27:22.169024Z",
"url": "https://files.pythonhosted.org/packages/b7/77/98f00b82ae3b1c13bb8efc5a0a6b9bf96b1e29ff56156864e3159dd86f86/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e146626e0fea0d24edee4f73ffbd00ea51d4e274dfe4b2b7acce9202b5acc9b",
"md5": "2d356d779eeab71d3295e2689284ed2e",
"sha256": "cb0dca36f1956f57138f00c85a51d10c914cef32980a4b3e2ba487e20e1b2e90"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "2d356d779eeab71d3295e2689284ed2e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 263563,
"upload_time": "2024-09-21T10:27:20",
"upload_time_iso_8601": "2024-09-21T10:27:20.508930Z",
"url": "https://files.pythonhosted.org/packages/0e/14/6626e0fea0d24edee4f73ffbd00ea51d4e274dfe4b2b7acce9202b5acc9b/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a3db7654a475c6b1bea7a3975862d8ee60a9ed77536cb696460ccf644b4ced3",
"md5": "58ddf3890f9b35a5eed79846c5149ac3",
"sha256": "58f0ede00ebb57a06812e0b7c99d22eef372b153d8db84ac85e8bfc59f9609ca"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "58ddf3890f9b35a5eed79846c5149ac3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 264130,
"upload_time": "2024-09-21T10:27:24",
"upload_time_iso_8601": "2024-09-21T10:27:24.044985Z",
"url": "https://files.pythonhosted.org/packages/7a/3d/b7654a475c6b1bea7a3975862d8ee60a9ed77536cb696460ccf644b4ced3/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53d6d78f7f2db669312c0a4c58f88b2849d95d7a62f1019d7ad32024dd31cf7b",
"md5": "f861960245189c8b4a0aa8aa2c079866",
"sha256": "d6e132632e64303468637e0f19022dc99730d2290bc9e44e9c693d8d97d8c130"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f861960245189c8b4a0aa8aa2c079866",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 224244,
"upload_time": "2024-09-21T10:27:25",
"upload_time_iso_8601": "2024-09-21T10:27:25.653229Z",
"url": "https://files.pythonhosted.org/packages/53/d6/d78f7f2db669312c0a4c58f88b2849d95d7a62f1019d7ad32024dd31cf7b/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8a8c1bfa13899cbdb1bd3002dcdfa41292a5344e6562f9ed9ff6dc1c991006d",
"md5": "78bc183f6f2399937a05a0a8301fb5ec",
"sha256": "20fa9c6fa3d6955ff4f15a44fc0c4af85fee37c775e5b86302537bca76f01f8f"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "78bc183f6f2399937a05a0a8301fb5ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 236939,
"upload_time": "2024-09-21T10:27:27",
"upload_time_iso_8601": "2024-09-21T10:27:27.240562Z",
"url": "https://files.pythonhosted.org/packages/c8/a8/c1bfa13899cbdb1bd3002dcdfa41292a5344e6562f9ed9ff6dc1c991006d/xor_cipher_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27b46241b7e629dd82f9388d339208cdc8a9c15f33deaa5a20b641004b333457",
"md5": "7dffa5a3d979bbe61ffe8c50ba766c06",
"sha256": "ba72780595d6a1c9d28f47f012d2fd7aa8637a939ff9364b13ce0b8c4963fc34"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7dffa5a3d979bbe61ffe8c50ba766c06",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 407291,
"upload_time": "2024-09-21T10:27:28",
"upload_time_iso_8601": "2024-09-21T10:27:28.851174Z",
"url": "https://files.pythonhosted.org/packages/27/b4/6241b7e629dd82f9388d339208cdc8a9c15f33deaa5a20b641004b333457/xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb7804f006af6cb94da62446d9ce85cdc0d1eada619f52370830dc7b7f0de842",
"md5": "6cc0bafaec183cabc77b6b021fe74736",
"sha256": "379e6a434a00ecfdfef67fd36ddd7478159301560928f66ba0fb02b1bf2756c4"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6cc0bafaec183cabc77b6b021fe74736",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 489342,
"upload_time": "2024-09-21T10:27:30",
"upload_time_iso_8601": "2024-09-21T10:27:30.587201Z",
"url": "https://files.pythonhosted.org/packages/cb/78/04f006af6cb94da62446d9ce85cdc0d1eada619f52370830dc7b7f0de842/xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8ace0fe76ff525a0ce18707ee8451fdfe4105481b7c7d93a3687fd60a9e2ab3",
"md5": "e75be5ff19295d49b76f98c87b70efd4",
"sha256": "b9185d249558fe72600ca58192828fe74c816fa89f2f4076291cc35356055dd0"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e75be5ff19295d49b76f98c87b70efd4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 411155,
"upload_time": "2024-09-21T10:27:32",
"upload_time_iso_8601": "2024-09-21T10:27:32.196254Z",
"url": "https://files.pythonhosted.org/packages/d8/ac/e0fe76ff525a0ce18707ee8451fdfe4105481b7c7d93a3687fd60a9e2ab3/xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d8e2bab5094ff5e854b308e553036e6b247375ecb57292c7aee6c3d233ecdaa",
"md5": "396223cb0cf8c9f70de1e3533467e59c",
"sha256": "d8802d5849cc2ec05be51122829233f50a11edb462bc2e84bb467c82f04c0bfa"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "396223cb0cf8c9f70de1e3533467e59c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 391984,
"upload_time": "2024-09-21T10:27:33",
"upload_time_iso_8601": "2024-09-21T10:27:33.916147Z",
"url": "https://files.pythonhosted.org/packages/4d/8e/2bab5094ff5e854b308e553036e6b247375ecb57292c7aee6c3d233ecdaa/xor_cipher_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "281136c6d6ce81e341300e3777c30b3db294bdde0992cf5810053be5b1ca2cf1",
"md5": "1ed820663eeca93cee37cfa5820c068f",
"sha256": "70d1a8040c7ee8206fc20abb893318c027ee2442c6cc5dfbfadf780c1defb468"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "1ed820663eeca93cee37cfa5820c068f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 93889,
"upload_time": "2024-09-21T10:27:35",
"upload_time_iso_8601": "2024-09-21T10:27:35.411015Z",
"url": "https://files.pythonhosted.org/packages/28/11/36c6d6ce81e341300e3777c30b3db294bdde0992cf5810053be5b1ca2cf1/xor_cipher_core-1.1.1-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53511ad5acd9ed2ddd5a2c1b149a8a54942b0575f5a8b9ec7f57d6f4a3537f0e",
"md5": "329cd97a3ede5e1eeb6cea0ec9babd8e",
"sha256": "086c5327119ef4d99802032fa27dd40228ab2ea1692c3c5f908a718df2150884"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "329cd97a3ede5e1eeb6cea0ec9babd8e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 98886,
"upload_time": "2024-09-21T10:27:36",
"upload_time_iso_8601": "2024-09-21T10:27:36.665577Z",
"url": "https://files.pythonhosted.org/packages/53/51/1ad5acd9ed2ddd5a2c1b149a8a54942b0575f5a8b9ec7f57d6f4a3537f0e/xor_cipher_core-1.1.1-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dac7004aa0f18bbe648fcdbe07623d55ca23a97a3b91b97c355e1eea2f134cf4",
"md5": "853cc8e002b2ecd62f5fe700e33add47",
"sha256": "a87ead02a639ab392a9f1d67fcc9c860ec4670352355e52cf6d6a7c0c2f4d3c3"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp310-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "853cc8e002b2ecd62f5fe700e33add47",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 95638,
"upload_time": "2024-09-21T10:27:37",
"upload_time_iso_8601": "2024-09-21T10:27:37.670679Z",
"url": "https://files.pythonhosted.org/packages/da/c7/004aa0f18bbe648fcdbe07623d55ca23a97a3b91b97c355e1eea2f134cf4/xor_cipher_core-1.1.1-cp310-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "455c01fe2a39594ff79fa7b24c3e1e275eeebf34664dcc241273d489162d7358",
"md5": "a0cf0665ba5fa33ec7d99b750fb36b6e",
"sha256": "bfad2483f3deed2133e19f1f924cfc61c3ed065c85ed9b74c3f8dcc1dfe327df"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a0cf0665ba5fa33ec7d99b750fb36b6e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 199332,
"upload_time": "2024-09-21T10:27:39",
"upload_time_iso_8601": "2024-09-21T10:27:39.317920Z",
"url": "https://files.pythonhosted.org/packages/45/5c/01fe2a39594ff79fa7b24c3e1e275eeebf34664dcc241273d489162d7358/xor_cipher_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38a928fc42d3635fe77122ea3594d3497f7eb4d386ce1edecc643bd1ae8b577a",
"md5": "27abca22cad34f5b89e4374f9152bb3f",
"sha256": "1ae78ec6be9010645f7c2f37847e9df084f9ddb0478fada54f471451a924bbe4"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "27abca22cad34f5b89e4374f9152bb3f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 194055,
"upload_time": "2024-09-21T10:27:40",
"upload_time_iso_8601": "2024-09-21T10:27:40.453872Z",
"url": "https://files.pythonhosted.org/packages/38/a9/28fc42d3635fe77122ea3594d3497f7eb4d386ce1edecc643bd1ae8b577a/xor_cipher_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f7de3667415f07e9efc98043d5c98888ed681db9ac27e29f8f631ca39dd3491",
"md5": "54add9f2f2d5db5a6011c2676d7e0388",
"sha256": "87bf7bb8d0e2217f96540ff6931a581c3c3394d069cf723954bd0678def8f96d"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "54add9f2f2d5db5a6011c2676d7e0388",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 232215,
"upload_time": "2024-09-21T10:27:42",
"upload_time_iso_8601": "2024-09-21T10:27:42.100589Z",
"url": "https://files.pythonhosted.org/packages/3f/7d/e3667415f07e9efc98043d5c98888ed681db9ac27e29f8f631ca39dd3491/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5ff4fa6215f140b411db5320097010952934a2d33a234bd14c1e913157916a2",
"md5": "b8b8289e2d6d22a7a245521d46af8b4f",
"sha256": "11dd58d9b0d8779716566af6540c16a0b255f60150b11a43ed047cca5781c2ba"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b8b8289e2d6d22a7a245521d46af8b4f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 236758,
"upload_time": "2024-09-21T10:27:43",
"upload_time_iso_8601": "2024-09-21T10:27:43.590227Z",
"url": "https://files.pythonhosted.org/packages/c5/ff/4fa6215f140b411db5320097010952934a2d33a234bd14c1e913157916a2/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40c55efa8b2f166415ba47443dbf609eeabbb69be479fc0583606c2ac06f04bb",
"md5": "60c41832bc830cab45e53bea1d7819b0",
"sha256": "fb75d7ec658e894969b80975895b7008cb18438887eee21e6adc9ebd8da0e23c"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "60c41832bc830cab45e53bea1d7819b0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 261815,
"upload_time": "2024-09-21T10:27:46",
"upload_time_iso_8601": "2024-09-21T10:27:46.396395Z",
"url": "https://files.pythonhosted.org/packages/40/c5/5efa8b2f166415ba47443dbf609eeabbb69be479fc0583606c2ac06f04bb/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96c6cb4d3e738a592d9260fa6d60ee83ac30db06192521a23bd391294fb0f539",
"md5": "ccf776a6dc380dae098bcbd246aa9dd1",
"sha256": "e30ad0f669b10c5399cd7f02194bcb2102ca6655d64f0695ba537d391b0876b7"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "ccf776a6dc380dae098bcbd246aa9dd1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 263585,
"upload_time": "2024-09-21T10:27:44",
"upload_time_iso_8601": "2024-09-21T10:27:44.758872Z",
"url": "https://files.pythonhosted.org/packages/96/c6/cb4d3e738a592d9260fa6d60ee83ac30db06192521a23bd391294fb0f539/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2bb5d03df4eaa8e4b640721426498f7bb0340ab8a1696893752b38c365f3bfb",
"md5": "5987bd2afa1ed6b5297f7bb418f6c214",
"sha256": "1a9745ae494c996b2067a42e5385ea46e4515e2e405a14d26a2cd8879c249c33"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5987bd2afa1ed6b5297f7bb418f6c214",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 263457,
"upload_time": "2024-09-21T10:27:47",
"upload_time_iso_8601": "2024-09-21T10:27:47.707847Z",
"url": "https://files.pythonhosted.org/packages/e2/bb/5d03df4eaa8e4b640721426498f7bb0340ab8a1696893752b38c365f3bfb/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "605b1c9ee7836825191a389b28e35c46cb9d166f7eb9b3440ba5cf6c82d57a96",
"md5": "153bd046c5306e2406e4055543ed1463",
"sha256": "b57f384bcaa628daef415d4d97c7cba10c761ae6ff4332b31da28fa878f97034"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "153bd046c5306e2406e4055543ed1463",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 224081,
"upload_time": "2024-09-21T10:27:49",
"upload_time_iso_8601": "2024-09-21T10:27:49.369004Z",
"url": "https://files.pythonhosted.org/packages/60/5b/1c9ee7836825191a389b28e35c46cb9d166f7eb9b3440ba5cf6c82d57a96/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1ae904a1e7e23e7916dc83537e7ba1fde6ae5c78be9241a9da2f1a516f75b28",
"md5": "9346ecfefa589ffecac7ba4d6a05a94d",
"sha256": "464db73c00f5e6b1759c7d593b76b2a1e42b4d35df3c68a418a92ce3a0fdcef2"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9346ecfefa589ffecac7ba4d6a05a94d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 236667,
"upload_time": "2024-09-21T10:27:50",
"upload_time_iso_8601": "2024-09-21T10:27:50.538715Z",
"url": "https://files.pythonhosted.org/packages/e1/ae/904a1e7e23e7916dc83537e7ba1fde6ae5c78be9241a9da2f1a516f75b28/xor_cipher_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3dd5963faba7e6434d5b0d4fd36ff021569fafc02a736238688e0d48084a761",
"md5": "99a0a230ad9e251c2a489a1eb4678159",
"sha256": "bb62986d2c6e70f0a5686b3437c5d656c4ffc9a8f386e2723129b07e606995fc"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "99a0a230ad9e251c2a489a1eb4678159",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 407139,
"upload_time": "2024-09-21T10:27:52",
"upload_time_iso_8601": "2024-09-21T10:27:52.357667Z",
"url": "https://files.pythonhosted.org/packages/e3/dd/5963faba7e6434d5b0d4fd36ff021569fafc02a736238688e0d48084a761/xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66a4b5277939dba808b55f4681b0d14806b8ae31b5393d6d57080a0cd5881c10",
"md5": "8a6c1dcc6882b9001a11df3d00a40d99",
"sha256": "2af09d6ebec3cf5cb7b744428847f9e36f6ca88b88ea8d8525c13880fae95ca9"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8a6c1dcc6882b9001a11df3d00a40d99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 489217,
"upload_time": "2024-09-21T10:27:53",
"upload_time_iso_8601": "2024-09-21T10:27:53.576642Z",
"url": "https://files.pythonhosted.org/packages/66/a4/b5277939dba808b55f4681b0d14806b8ae31b5393d6d57080a0cd5881c10/xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61ff0230d7490c173322b38b2dda4490766f929e1f843d9e994ebef325d49dd9",
"md5": "5ca60a6f8553cb9b75be5a7f09770849",
"sha256": "47514e380bf433cc3603f26e9c2f994dee38b06abc76fc9e266127a0334a09b2"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5ca60a6f8553cb9b75be5a7f09770849",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 411081,
"upload_time": "2024-09-21T10:27:55",
"upload_time_iso_8601": "2024-09-21T10:27:55.539151Z",
"url": "https://files.pythonhosted.org/packages/61/ff/0230d7490c173322b38b2dda4490766f929e1f843d9e994ebef325d49dd9/xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3f8701b3fffec0f68c6fee047b549a96aa3af43e8b04bac61a94af6f9b0e3a5",
"md5": "7341a2ac7be2aa36b67942c60de78ed9",
"sha256": "83e1989fe86aee44d23bca4e1da9a34778a07d1e868fbb52002b13241c1af6a8"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7341a2ac7be2aa36b67942c60de78ed9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 391761,
"upload_time": "2024-09-21T10:27:56",
"upload_time_iso_8601": "2024-09-21T10:27:56.709245Z",
"url": "https://files.pythonhosted.org/packages/e3/f8/701b3fffec0f68c6fee047b549a96aa3af43e8b04bac61a94af6f9b0e3a5/xor_cipher_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "451566c446e9f72a23f591c74b28273e2e50837a35d702f98b146df8edbdd460",
"md5": "73f36dce9386e9722396008c77d35f2d",
"sha256": "1dcac9bc05b0a3dc8b10213a9958d88d7ab3389a2d7a11e3c093852b978a5c6e"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "73f36dce9386e9722396008c77d35f2d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 93883,
"upload_time": "2024-09-21T10:27:58",
"upload_time_iso_8601": "2024-09-21T10:27:58.055677Z",
"url": "https://files.pythonhosted.org/packages/45/15/66c446e9f72a23f591c74b28273e2e50837a35d702f98b146df8edbdd460/xor_cipher_core-1.1.1-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fc441007ae19e2b698e23789e3850e885bfbc816991025c7e8f67cc6d1c6117",
"md5": "92f21caba4f866c662ea89363645da01",
"sha256": "ee18f553628d76bc19284612718a5cffd19c85327e1d265a64c4bb1bf5e7e001"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "92f21caba4f866c662ea89363645da01",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 98824,
"upload_time": "2024-09-21T10:27:59",
"upload_time_iso_8601": "2024-09-21T10:27:59.484076Z",
"url": "https://files.pythonhosted.org/packages/7f/c4/41007ae19e2b698e23789e3850e885bfbc816991025c7e8f67cc6d1c6117/xor_cipher_core-1.1.1-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09d66b4c80e2f3817e2177bbd500bd65bc155701a619e0855c012dc04aab6425",
"md5": "02cb817004fe805b52b696413d84d1b3",
"sha256": "f32f3c2d846ce4cc1d789323a662ad810b3a98145d3a270af3bd868aa5bd329d"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp311-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "02cb817004fe805b52b696413d84d1b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 95545,
"upload_time": "2024-09-21T10:28:00",
"upload_time_iso_8601": "2024-09-21T10:28:00.916271Z",
"url": "https://files.pythonhosted.org/packages/09/d6/6b4c80e2f3817e2177bbd500bd65bc155701a619e0855c012dc04aab6425/xor_cipher_core-1.1.1-cp311-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be8b1e06eb964e931ad29949cd97b667f7a50ce9a9f48c6df5810b0d91acb7d1",
"md5": "fa477f2d73ecc42f875fc0b76e1036d5",
"sha256": "b6dc706f53cb2035bab1426c532d734cff2a0ac799d8dd4dfc528629addc9843"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "fa477f2d73ecc42f875fc0b76e1036d5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 198762,
"upload_time": "2024-09-21T10:28:02",
"upload_time_iso_8601": "2024-09-21T10:28:02.188883Z",
"url": "https://files.pythonhosted.org/packages/be/8b/1e06eb964e931ad29949cd97b667f7a50ce9a9f48c6df5810b0d91acb7d1/xor_cipher_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "579b7f4b6f1d03f6d108d3e177178f02ac0e7e7bf69101cc9cac44d002cdeebf",
"md5": "2d5a09ec09cd03ed4d753bc6358168f8",
"sha256": "d14ec8b6b3a746cd76bbfedb79417063364e58bfc6bc6d815218ee4800de4541"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2d5a09ec09cd03ed4d753bc6358168f8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 193978,
"upload_time": "2024-09-21T10:28:03",
"upload_time_iso_8601": "2024-09-21T10:28:03.763813Z",
"url": "https://files.pythonhosted.org/packages/57/9b/7f4b6f1d03f6d108d3e177178f02ac0e7e7bf69101cc9cac44d002cdeebf/xor_cipher_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc280894a6234e01da6d967317d09d72bf95d5df1fb1618eec3ba83bc381a3b1",
"md5": "239723c3557f966a72622f7134b6dcfa",
"sha256": "b2930820d8a2f0c5f3f80b8aedf5fa203e53ccd1703d101ed5c4323d9e32cc03"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "239723c3557f966a72622f7134b6dcfa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 232010,
"upload_time": "2024-09-21T10:28:05",
"upload_time_iso_8601": "2024-09-21T10:28:05.671977Z",
"url": "https://files.pythonhosted.org/packages/fc/28/0894a6234e01da6d967317d09d72bf95d5df1fb1618eec3ba83bc381a3b1/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71577fe32a12435c03f0158a78cd55044c4dce269d72fec2bb6ee212281e1039",
"md5": "234562d45857addd6c1e0f1e3fbf06f5",
"sha256": "14f04ce472f5a6f2d006d61d23dc8cc93218c50145327374b2790d529e401246"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "234562d45857addd6c1e0f1e3fbf06f5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 236245,
"upload_time": "2024-09-21T10:28:07",
"upload_time_iso_8601": "2024-09-21T10:28:07.180868Z",
"url": "https://files.pythonhosted.org/packages/71/57/7fe32a12435c03f0158a78cd55044c4dce269d72fec2bb6ee212281e1039/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3fef6a60c05a07fbf3694711fcf58da514e94cb22fdc04401acbecc1d2b0911",
"md5": "9d54a2bd4bb0c0c0d4b2a3744756cf89",
"sha256": "bb35e1d256d0f85997986bad73e0d3806f8773374a2b031593df70eaa8ce9253"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9d54a2bd4bb0c0c0d4b2a3744756cf89",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 261405,
"upload_time": "2024-09-21T10:28:09",
"upload_time_iso_8601": "2024-09-21T10:28:09.580912Z",
"url": "https://files.pythonhosted.org/packages/f3/fe/f6a60c05a07fbf3694711fcf58da514e94cb22fdc04401acbecc1d2b0911/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9105cf40730ee46ceaa7dc8e2bd1484826bf13daf87dd35400bd25df8edcdf5",
"md5": "75bf46b906a88f00a68a02926c252c83",
"sha256": "e814bc8e9a247e422b1f50cc405121bb95f2f7d490fff861a539435781c25607"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "75bf46b906a88f00a68a02926c252c83",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 263158,
"upload_time": "2024-09-21T10:28:08",
"upload_time_iso_8601": "2024-09-21T10:28:08.353660Z",
"url": "https://files.pythonhosted.org/packages/b9/10/5cf40730ee46ceaa7dc8e2bd1484826bf13daf87dd35400bd25df8edcdf5/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71f02f61d205683f1e9750a30c45c7162af5bdd5f8089b64579693c363f0a062",
"md5": "e05dafac41496d0d8ed6c9f03d1ccb80",
"sha256": "454a4c20962a10d06ff5065afdaa8479aa5d03f36644252dc94f9c92f488d692"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e05dafac41496d0d8ed6c9f03d1ccb80",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 262343,
"upload_time": "2024-09-21T10:28:11",
"upload_time_iso_8601": "2024-09-21T10:28:11.015109Z",
"url": "https://files.pythonhosted.org/packages/71/f0/2f61d205683f1e9750a30c45c7162af5bdd5f8089b64579693c363f0a062/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4d9a7c36526b3e140c668f3673252723f2e94e27e48435a5f3322518bb11b1b",
"md5": "f7c0eb9bd9e56c8f4af825e0553f5473",
"sha256": "69f5b343dbe315f198c1be56706523ef8180eae529cdde7793dd2da4f54643eb"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f7c0eb9bd9e56c8f4af825e0553f5473",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 223932,
"upload_time": "2024-09-21T10:28:12",
"upload_time_iso_8601": "2024-09-21T10:28:12.155300Z",
"url": "https://files.pythonhosted.org/packages/c4/d9/a7c36526b3e140c668f3673252723f2e94e27e48435a5f3322518bb11b1b/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a76668c499c684382cbf25f31a911fd4cd5eb5b8456c600c13ff814c0dff6514",
"md5": "1f121b4fabfd79fe0c5d37f0a465479b",
"sha256": "594e8cd49bd9c6ee9001c22d782fcc060e238a1323cc9660fcfd1e2ca4941c0d"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1f121b4fabfd79fe0c5d37f0a465479b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 236512,
"upload_time": "2024-09-21T10:28:13",
"upload_time_iso_8601": "2024-09-21T10:28:13.288122Z",
"url": "https://files.pythonhosted.org/packages/a7/66/68c499c684382cbf25f31a911fd4cd5eb5b8456c600c13ff814c0dff6514/xor_cipher_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6c8c8897a6ffa707d0d73b1770bfd081e38696b7de0725a94b27aab4aec3a3e",
"md5": "713c0e535b9b41e4b63005e25765f13d",
"sha256": "ac6bd9b49d02968f4cbede718740c5b90becc7979f79051e5ca0cba77426b58f"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "713c0e535b9b41e4b63005e25765f13d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 407396,
"upload_time": "2024-09-21T10:28:15",
"upload_time_iso_8601": "2024-09-21T10:28:15.180467Z",
"url": "https://files.pythonhosted.org/packages/b6/c8/c8897a6ffa707d0d73b1770bfd081e38696b7de0725a94b27aab4aec3a3e/xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d19fd561e599cbb48ef8d8db13b45bf4f1b355d93ebd68db73021d689fc44a1",
"md5": "2950cb3f269865bf6ff8132a7339f4cf",
"sha256": "ef2bcf190b2b3a2f01dc4c36d73e5366034768757c8b06b4ddeb2698d5238029"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "2950cb3f269865bf6ff8132a7339f4cf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 489063,
"upload_time": "2024-09-21T10:28:16",
"upload_time_iso_8601": "2024-09-21T10:28:16.386301Z",
"url": "https://files.pythonhosted.org/packages/5d/19/fd561e599cbb48ef8d8db13b45bf4f1b355d93ebd68db73021d689fc44a1/xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4a77071c72d3e193987efeaf99c30e776f30fa155654a1d729214bce19ee2c5",
"md5": "9e780c4da9d92a706809863d6dc54827",
"sha256": "7362432082769656e7f244573958bfb0035f5ccf52ea40c0d6092ef1c19b9f8f"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9e780c4da9d92a706809863d6dc54827",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 411334,
"upload_time": "2024-09-21T10:28:17",
"upload_time_iso_8601": "2024-09-21T10:28:17.538175Z",
"url": "https://files.pythonhosted.org/packages/b4/a7/7071c72d3e193987efeaf99c30e776f30fa155654a1d729214bce19ee2c5/xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4e00bc79ce9e45b5ab56e9026378c7b695a53e1348c7e8eb8cfabdf067c94f5",
"md5": "0740492f64ce81a3656716611b0ea025",
"sha256": "bfe8cac00fc22cd5304055b1286a191c36355860ed822204dca7e367c9ca1250"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0740492f64ce81a3656716611b0ea025",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 391853,
"upload_time": "2024-09-21T10:28:18",
"upload_time_iso_8601": "2024-09-21T10:28:18.675535Z",
"url": "https://files.pythonhosted.org/packages/e4/e0/0bc79ce9e45b5ab56e9026378c7b695a53e1348c7e8eb8cfabdf067c94f5/xor_cipher_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1be600ce4cd4e02624473f3d7bbf3774adacd7ea3b250404491a483da49610e2",
"md5": "eb830e64cf0927949f28df3fc8e6be4c",
"sha256": "a2e2971fac34fba15dc9c98d9a89397d331f55870b46bc233c28a4424d878897"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "eb830e64cf0927949f28df3fc8e6be4c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 93586,
"upload_time": "2024-09-21T10:28:19",
"upload_time_iso_8601": "2024-09-21T10:28:19.704036Z",
"url": "https://files.pythonhosted.org/packages/1b/e6/00ce4cd4e02624473f3d7bbf3774adacd7ea3b250404491a483da49610e2/xor_cipher_core-1.1.1-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d00019a0edad994d068a72d9c471b9fb71bd9ac8c8e32c9bd39ee7e709649f8",
"md5": "b968e1c2dfefcf7d4b198df43dcc4128",
"sha256": "1a7715567bcfd1eb3b70eafe88e72f30130b27b784481aaac0c49ef63d1afeb4"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "b968e1c2dfefcf7d4b198df43dcc4128",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 98813,
"upload_time": "2024-09-21T10:28:21",
"upload_time_iso_8601": "2024-09-21T10:28:21.146110Z",
"url": "https://files.pythonhosted.org/packages/0d/00/019a0edad994d068a72d9c471b9fb71bd9ac8c8e32c9bd39ee7e709649f8/xor_cipher_core-1.1.1-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16cd9b8d34182c62cdb6d22c6a63c61ad5c96ebcbec004f56953b30ae55ae715",
"md5": "06af92860ec32ccd118074e42ac93e05",
"sha256": "e26498caf8982212b2efda7abb199fa47cef08f8afc5c5c4274e6407cd8b74ef"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp312-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "06af92860ec32ccd118074e42ac93e05",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 95511,
"upload_time": "2024-09-21T10:28:22",
"upload_time_iso_8601": "2024-09-21T10:28:22.198013Z",
"url": "https://files.pythonhosted.org/packages/16/cd/9b8d34182c62cdb6d22c6a63c61ad5c96ebcbec004f56953b30ae55ae715/xor_cipher_core-1.1.1-cp312-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcf9c9fcbd6f6000ee1015d8f234de01b25de30b3fb9d0c4f6e3f5f8798e5a36",
"md5": "f795306ba011c9b62c3ad059f606f54f",
"sha256": "5ac5e101403b4c1d4e11e77cb90944535700f2216caae5cb865608272c6c2a46"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f795306ba011c9b62c3ad059f606f54f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 199584,
"upload_time": "2024-09-21T10:28:23",
"upload_time_iso_8601": "2024-09-21T10:28:23.486117Z",
"url": "https://files.pythonhosted.org/packages/fc/f9/c9fcbd6f6000ee1015d8f234de01b25de30b3fb9d0c4f6e3f5f8798e5a36/xor_cipher_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f05842fc2a2e8d1a32240d17841f2e5dccfd5d7f7c8510de5770734533607c6",
"md5": "10b86e96f237d018e169ccae305b75e2",
"sha256": "d8e32fa91bb162738840fe01788d6fe59378a216b610e8a72abd682b857bf25f"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "10b86e96f237d018e169ccae305b75e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 194554,
"upload_time": "2024-09-21T10:28:24",
"upload_time_iso_8601": "2024-09-21T10:28:24.713135Z",
"url": "https://files.pythonhosted.org/packages/8f/05/842fc2a2e8d1a32240d17841f2e5dccfd5d7f7c8510de5770734533607c6/xor_cipher_core-1.1.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48b20660d3d8ff78cd5635d468ca0ac4e1895cdc37f77bc201dbf7cf232f1dbe",
"md5": "5007545c51a1783e89e034fdf8bf9960",
"sha256": "513636acfb479aa4eccb740880c784fe1a929fe978c0e14e999e10c526c1ab0f"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5007545c51a1783e89e034fdf8bf9960",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 232294,
"upload_time": "2024-09-21T10:28:25",
"upload_time_iso_8601": "2024-09-21T10:28:25.929968Z",
"url": "https://files.pythonhosted.org/packages/48/b2/0660d3d8ff78cd5635d468ca0ac4e1895cdc37f77bc201dbf7cf232f1dbe/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06db6a98a89b2a34a5d75e827afaccf68c67b619f334313e987f092cc3ffce6b",
"md5": "dad97ffc681e5e488c90712c582b5134",
"sha256": "176479ac8d5e7a0a62b77ad8ed90ce1f66d75f03424466a2c1459ebd9c74de50"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "dad97ffc681e5e488c90712c582b5134",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 236937,
"upload_time": "2024-09-21T10:28:27",
"upload_time_iso_8601": "2024-09-21T10:28:27.816405Z",
"url": "https://files.pythonhosted.org/packages/06/db/6a98a89b2a34a5d75e827afaccf68c67b619f334313e987f092cc3ffce6b/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "005ca610b71c01f74127e809f45a919bd09a184a3fa414ff541b8202da928074",
"md5": "f2429bffca6cf9e537c119317cb6d588",
"sha256": "317563fb33560e75f2f29d114990614a44caa08000270cfc8c1cac8e6416ab53"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f2429bffca6cf9e537c119317cb6d588",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 261389,
"upload_time": "2024-09-21T10:28:30",
"upload_time_iso_8601": "2024-09-21T10:28:30.709457Z",
"url": "https://files.pythonhosted.org/packages/00/5c/a610b71c01f74127e809f45a919bd09a184a3fa414ff541b8202da928074/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fcb24be6334f39257ebf13570b6638b5589535d29f122dfe917a755aedacc04",
"md5": "b961206eaa592613afb3a82a40582d0c",
"sha256": "8bf7644812f78b61cb67abb9cd4f6eefd82397ed9422a6c8bf2cb939349eaf30"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "b961206eaa592613afb3a82a40582d0c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 263475,
"upload_time": "2024-09-21T10:28:29",
"upload_time_iso_8601": "2024-09-21T10:28:29.510813Z",
"url": "https://files.pythonhosted.org/packages/2f/cb/24be6334f39257ebf13570b6638b5589535d29f122dfe917a755aedacc04/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "972f69cf91376972247696e9880e745ed04ce06d521cf44878c3fac966958528",
"md5": "e81d3e9cd3e77d9684e8f22b1ef200f2",
"sha256": "c95e837fe670cb6ec5a9d393e3811bc85eb1b75ebc90aed515697743f1d1b8a7"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e81d3e9cd3e77d9684e8f22b1ef200f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 264000,
"upload_time": "2024-09-21T10:28:31",
"upload_time_iso_8601": "2024-09-21T10:28:31.884486Z",
"url": "https://files.pythonhosted.org/packages/97/2f/69cf91376972247696e9880e745ed04ce06d521cf44878c3fac966958528/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6fd478284747e78215b996bddcbb6c9e175e05bd3033207980f7b9dc97db1d19",
"md5": "6f48c748975003d8972347573a93b2c2",
"sha256": "92c688f5622c9ba5c5dc7052302f8db023ba660ddd0c7cac01dbb24962beec00"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6f48c748975003d8972347573a93b2c2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 224589,
"upload_time": "2024-09-21T10:28:33",
"upload_time_iso_8601": "2024-09-21T10:28:33.115294Z",
"url": "https://files.pythonhosted.org/packages/6f/d4/78284747e78215b996bddcbb6c9e175e05bd3033207980f7b9dc97db1d19/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73c77aae729c62d6dd194dae0b11110d9587d85dbb880a9d0e49bde4690fba9c",
"md5": "8db370ee014814031b34f29771f34602",
"sha256": "0a69d34d9c2f82f9a7e8f83d84a4cb125870af050424c06863067567d212ff9d"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8db370ee014814031b34f29771f34602",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 237180,
"upload_time": "2024-09-21T10:28:34",
"upload_time_iso_8601": "2024-09-21T10:28:34.444105Z",
"url": "https://files.pythonhosted.org/packages/73/c7/7aae729c62d6dd194dae0b11110d9587d85dbb880a9d0e49bde4690fba9c/xor_cipher_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "751ffdaadf7adfae93bb20fdace0fc93c13046230412af28de4a06ce84fef254",
"md5": "83cbc0803129563fa1d77860beb760df",
"sha256": "94e7dbbb8905e17494a9920240a5ef941e75485c84e3c7ba4e957cfe77e4d429"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "83cbc0803129563fa1d77860beb760df",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 407861,
"upload_time": "2024-09-21T10:28:35",
"upload_time_iso_8601": "2024-09-21T10:28:35.621636Z",
"url": "https://files.pythonhosted.org/packages/75/1f/fdaadf7adfae93bb20fdace0fc93c13046230412af28de4a06ce84fef254/xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "271e2e32620fb7628808288e778651f46dcf092af4891f9c94905ef4cd90047d",
"md5": "c8bcdba864003ad9796bb1baaf86f4bb",
"sha256": "df30ca281eedb3d6387f07fc6252ab8a513bcc4989390b24fda4c5f7230d26fd"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c8bcdba864003ad9796bb1baaf86f4bb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 489407,
"upload_time": "2024-09-21T10:28:37",
"upload_time_iso_8601": "2024-09-21T10:28:37.745112Z",
"url": "https://files.pythonhosted.org/packages/27/1e/2e32620fb7628808288e778651f46dcf092af4891f9c94905ef4cd90047d/xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2748e692ae1adb461bdc2568c41e44b3672631fca5b35605f8da4a4702e2babe",
"md5": "de52b9a3a4f6ac36519fd4aaee991234",
"sha256": "7cb1723ee34f80021503272cbf4c6e6a40372fea544c43737d352dce07368340"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "de52b9a3a4f6ac36519fd4aaee991234",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 412043,
"upload_time": "2024-09-21T10:28:39",
"upload_time_iso_8601": "2024-09-21T10:28:39.537360Z",
"url": "https://files.pythonhosted.org/packages/27/48/e692ae1adb461bdc2568c41e44b3672631fca5b35605f8da4a4702e2babe/xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c742a216567c625d3b7a4547af6b8c08ce36f42cdfefdc4ae5b48189f8aea29",
"md5": "0fa31d6ef7548d9c0bf88f15eb8c7090",
"sha256": "8e31c605e6a3f0479c884a92cc06a334bd4c22edf0e19ff2eea8938d72b3540b"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0fa31d6ef7548d9c0bf88f15eb8c7090",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 392226,
"upload_time": "2024-09-21T10:28:40",
"upload_time_iso_8601": "2024-09-21T10:28:40.835014Z",
"url": "https://files.pythonhosted.org/packages/1c/74/2a216567c625d3b7a4547af6b8c08ce36f42cdfefdc4ae5b48189f8aea29/xor_cipher_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cb4ddfc427d3bf87787e1e81881c5212696981ff21f487b7e9595453a069480",
"md5": "51864c1c6b00324caa28a93e32710261",
"sha256": "597f5664048ab7a7cf7e0507e6d133d97d9bd3ac27a7ee9de4c4fbbfe02898c8"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "51864c1c6b00324caa28a93e32710261",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 93935,
"upload_time": "2024-09-21T10:28:42",
"upload_time_iso_8601": "2024-09-21T10:28:42.420882Z",
"url": "https://files.pythonhosted.org/packages/5c/b4/ddfc427d3bf87787e1e81881c5212696981ff21f487b7e9595453a069480/xor_cipher_core-1.1.1-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8616153fa392fa2cc8506085f45afecd18fb7a74ff33a3526292e108d3e76ac",
"md5": "9ef237aaa1c0293ce34ba616cd95bb88",
"sha256": "a5a0b83d9f68b5519f72f63f24cb77e8abb8d4a7a99291d13aba6db545c9a4b5"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "9ef237aaa1c0293ce34ba616cd95bb88",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 99360,
"upload_time": "2024-09-21T10:28:43",
"upload_time_iso_8601": "2024-09-21T10:28:43.478925Z",
"url": "https://files.pythonhosted.org/packages/f8/61/6153fa392fa2cc8506085f45afecd18fb7a74ff33a3526292e108d3e76ac/xor_cipher_core-1.1.1-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "942ba1b5afd027aa390779b685d09f8efe68899e9ae692c2e214bea4fd34d668",
"md5": "9069b8dca41cfbc8ffee6faa61bae6e4",
"sha256": "5a780aa5114d9f8c052ad4b8e4c20046e1650603b52c0a2e584b78c162326317"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp38-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "9069b8dca41cfbc8ffee6faa61bae6e4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 95510,
"upload_time": "2024-09-21T10:28:44",
"upload_time_iso_8601": "2024-09-21T10:28:44.970109Z",
"url": "https://files.pythonhosted.org/packages/94/2b/a1b5afd027aa390779b685d09f8efe68899e9ae692c2e214bea4fd34d668/xor_cipher_core-1.1.1-cp38-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aeae3757c91e56165bb6ad11e182af8c9f69d77dfce1cbe560ca30c31f0a0d53",
"md5": "b1c98b06b32fb9cbe74aea8c5108a701",
"sha256": "7accfda1d78e6518d3b9be1368276887ea1af71f5cd12e050afae72f5099b148"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b1c98b06b32fb9cbe74aea8c5108a701",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 199850,
"upload_time": "2024-09-21T10:28:46",
"upload_time_iso_8601": "2024-09-21T10:28:46.316058Z",
"url": "https://files.pythonhosted.org/packages/ae/ae/3757c91e56165bb6ad11e182af8c9f69d77dfce1cbe560ca30c31f0a0d53/xor_cipher_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63c079442871fad8d5fe9d7907315a9ee8447467968f2196c52e0d8bda92fa5b",
"md5": "05d1661eebef1db8b6b63efb77cf82fb",
"sha256": "5fa68cd203ef183db209fec8228ad4627e0b063c8ce84175b7d337580e269b37"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "05d1661eebef1db8b6b63efb77cf82fb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 194806,
"upload_time": "2024-09-21T10:28:47",
"upload_time_iso_8601": "2024-09-21T10:28:47.565440Z",
"url": "https://files.pythonhosted.org/packages/63/c0/79442871fad8d5fe9d7907315a9ee8447467968f2196c52e0d8bda92fa5b/xor_cipher_core-1.1.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c64801008558f916913c9a7ef0527e235038aab110ffe7df7af9c41608f3f03",
"md5": "21c26df1da9400dee7fd7a96672fc942",
"sha256": "be9e442d27b95d6ea0a1cefa4cc465bd5bd9939c241fb6132977d90faf4eee8f"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "21c26df1da9400dee7fd7a96672fc942",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 233036,
"upload_time": "2024-09-21T10:28:49",
"upload_time_iso_8601": "2024-09-21T10:28:49.360696Z",
"url": "https://files.pythonhosted.org/packages/8c/64/801008558f916913c9a7ef0527e235038aab110ffe7df7af9c41608f3f03/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d6f2c8ee7f27aa4982650ff868559653aafd50c60dbb4ea896b770524dc5d8c",
"md5": "fe7ed18a1735e7b30781065cfc609bde",
"sha256": "d009474fbd43326c07b4f8b6a493701d159a46b8d45974c4e1ee3d8e96dc68d0"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fe7ed18a1735e7b30781065cfc609bde",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 237312,
"upload_time": "2024-09-21T10:28:51",
"upload_time_iso_8601": "2024-09-21T10:28:51.018379Z",
"url": "https://files.pythonhosted.org/packages/2d/6f/2c8ee7f27aa4982650ff868559653aafd50c60dbb4ea896b770524dc5d8c/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bb0be0cfc7b2274247ca5d138c4dfab8f17727d4cf36211085219f01052b737",
"md5": "5757df5c1e59864116916cb900f5e168",
"sha256": "e0ff1214e8b4c658cd65a102e83bc274a186eb832601473e5400fb47d73e5e37"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5757df5c1e59864116916cb900f5e168",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 261740,
"upload_time": "2024-09-21T10:28:54",
"upload_time_iso_8601": "2024-09-21T10:28:54.073127Z",
"url": "https://files.pythonhosted.org/packages/9b/b0/be0cfc7b2274247ca5d138c4dfab8f17727d4cf36211085219f01052b737/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4732a8544f6aed04b2a3098defff8640f10d836a887a396af8aad96eb0a72ac",
"md5": "d58a1dcab561dc44784c663334c01364",
"sha256": "0f6ecabfefbdb54727d33ebf1a32a54f9521212b1dd59c24b3dfcc87a08a6e0d"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "d58a1dcab561dc44784c663334c01364",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 263873,
"upload_time": "2024-09-21T10:28:52",
"upload_time_iso_8601": "2024-09-21T10:28:52.554022Z",
"url": "https://files.pythonhosted.org/packages/b4/73/2a8544f6aed04b2a3098defff8640f10d836a887a396af8aad96eb0a72ac/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8eef07d81e9b9e618b8ea96e6d263fcb504702426935ab5b6f170c939c18fc1",
"md5": "564c847ee661bab35d56c5a6923b51df",
"sha256": "9971209ea64f598faa3d45879d84d6cdff50eb2d49eede28a24897542b1c8acb"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "564c847ee661bab35d56c5a6923b51df",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 264112,
"upload_time": "2024-09-21T10:28:55",
"upload_time_iso_8601": "2024-09-21T10:28:55.750830Z",
"url": "https://files.pythonhosted.org/packages/c8/ee/f07d81e9b9e618b8ea96e6d263fcb504702426935ab5b6f170c939c18fc1/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20f47c1b001641781e1141a80f753ba68bcaa4eefc5e41a29f7bed9b846012c2",
"md5": "8bdcbaa17c5aa5eb89c7f5058c49144f",
"sha256": "85af1d4e0533d5aa922bab0c3d301b566f7be934c3ddd9ba2f2af4425f214443"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8bdcbaa17c5aa5eb89c7f5058c49144f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 224658,
"upload_time": "2024-09-21T10:28:56",
"upload_time_iso_8601": "2024-09-21T10:28:56.929280Z",
"url": "https://files.pythonhosted.org/packages/20/f4/7c1b001641781e1141a80f753ba68bcaa4eefc5e41a29f7bed9b846012c2/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5512ebc16067f9d43f7aeb8a077fea7eaf941d6024a0850adf21e15f7929cd81",
"md5": "cdf8a3fc013f85d308ce09412753726e",
"sha256": "4be8ecba597ff6e698afe6cdf1760ddd01fc7e87d4cf2552454833fe933bff54"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "cdf8a3fc013f85d308ce09412753726e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 237450,
"upload_time": "2024-09-21T10:28:58",
"upload_time_iso_8601": "2024-09-21T10:28:58.244959Z",
"url": "https://files.pythonhosted.org/packages/55/12/ebc16067f9d43f7aeb8a077fea7eaf941d6024a0850adf21e15f7929cd81/xor_cipher_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cba8d66fbe518f64a1a1cab6d53520b479e654736a143f6d47d1fa2a30441f85",
"md5": "4b9d94d8d6261b6db13e9f337cd9c19c",
"sha256": "e30e3914c6c24988b1ffdf512ee1a4688420313fbfa79701d2f6768424e8bfc0"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4b9d94d8d6261b6db13e9f337cd9c19c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 407770,
"upload_time": "2024-09-21T10:28:59",
"upload_time_iso_8601": "2024-09-21T10:28:59.564194Z",
"url": "https://files.pythonhosted.org/packages/cb/a8/d66fbe518f64a1a1cab6d53520b479e654736a143f6d47d1fa2a30441f85/xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21f04885f05f5473c513f66d1473c56ab79c02e4ee23cfb46e54eefa03aa1bec",
"md5": "9554e8fb193fa0ec5eea6bfa533b7ad4",
"sha256": "fd09b3b204a72944b60fb4663e5e229c99f773cdadf7148a9fec8e066f3b4398"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "9554e8fb193fa0ec5eea6bfa533b7ad4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 489589,
"upload_time": "2024-09-21T10:29:00",
"upload_time_iso_8601": "2024-09-21T10:29:00.797189Z",
"url": "https://files.pythonhosted.org/packages/21/f0/4885f05f5473c513f66d1473c56ab79c02e4ee23cfb46e54eefa03aa1bec/xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8bc4bd0faf61fce0a7af36cc082b5a9973fad1ffd7af366c8eea7d9c2936ff96",
"md5": "e3dd1e1a3da95d159a6872bf903e95eb",
"sha256": "a7800e48b9a6c1f703c89c845a2fda68ca4578e0cce1924c75bd20469c599472"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e3dd1e1a3da95d159a6872bf903e95eb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 411967,
"upload_time": "2024-09-21T10:29:02",
"upload_time_iso_8601": "2024-09-21T10:29:02.070903Z",
"url": "https://files.pythonhosted.org/packages/8b/c4/bd0faf61fce0a7af36cc082b5a9973fad1ffd7af366c8eea7d9c2936ff96/xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fca79bdee9eee6d494a5a5173da3355198a631c2e5c8d3159c2b417d2939ccad",
"md5": "7b0e811dce974899b01028dab0521749",
"sha256": "92e6be913bf9f88bcfc1486614a160a2cfab3225972a989c2fe9bd065638b8e1"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7b0e811dce974899b01028dab0521749",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 392486,
"upload_time": "2024-09-21T10:29:03",
"upload_time_iso_8601": "2024-09-21T10:29:03.491153Z",
"url": "https://files.pythonhosted.org/packages/fc/a7/9bdee9eee6d494a5a5173da3355198a631c2e5c8d3159c2b417d2939ccad/xor_cipher_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93b2fba7f3065f1d6b61904e37e788e35e0cff5ecbccd05d82f590a7bc683f0a",
"md5": "f0fbfcf5f0e67c940b6baf00c8e0a45e",
"sha256": "9f1b20919a7e273ec7aae1dd1206a5a2978f21599120b63a1402f9a19bfae81c"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "f0fbfcf5f0e67c940b6baf00c8e0a45e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 94380,
"upload_time": "2024-09-21T10:29:05",
"upload_time_iso_8601": "2024-09-21T10:29:05.068027Z",
"url": "https://files.pythonhosted.org/packages/93/b2/fba7f3065f1d6b61904e37e788e35e0cff5ecbccd05d82f590a7bc683f0a/xor_cipher_core-1.1.1-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6834b381d0d24f7d46f45e1d9d7bbaee22cbe739d9d70f75d1e9e6ece69a2bb9",
"md5": "60da20db93a8ec1c92c01fd93ce02447",
"sha256": "f4fffca57e5ad455151bcea5a7429a105c07146723e4035116c36e46d7ccf341"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "60da20db93a8ec1c92c01fd93ce02447",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 99644,
"upload_time": "2024-09-21T10:29:06",
"upload_time_iso_8601": "2024-09-21T10:29:06.569877Z",
"url": "https://files.pythonhosted.org/packages/68/34/b381d0d24f7d46f45e1d9d7bbaee22cbe739d9d70f75d1e9e6ece69a2bb9/xor_cipher_core-1.1.1-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3dfa0fb34b144a2576e3e07335d14387fa7e2704581a1e086768986e00c4d46",
"md5": "1d26952d53f9b9cccd1163fe73e8e366",
"sha256": "941800c65ec61060410ba83d84be1955515d8ece44b3c19ddd3f9612e6d66a00"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1-cp39-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "1d26952d53f9b9cccd1163fe73e8e366",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 96012,
"upload_time": "2024-09-21T10:29:07",
"upload_time_iso_8601": "2024-09-21T10:29:07.681895Z",
"url": "https://files.pythonhosted.org/packages/d3/df/a0fb34b144a2576e3e07335d14387fa7e2704581a1e086768986e00c4d46/xor_cipher_core-1.1.1-cp39-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43e20ff8b9af632a22f0fcb621afeab2f29f788ace4b5476fe6fc31e06bfe3e0",
"md5": "fad160076c65302f793086fac53844ca",
"sha256": "882426e0cf858137b016e1ff79c8adefa8b9beb5af5f8265a17557335af0ffc6"
},
"downloads": -1,
"filename": "xor_cipher_core-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "fad160076c65302f793086fac53844ca",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 13506,
"upload_time": "2024-09-21T10:29:08",
"upload_time_iso_8601": "2024-09-21T10:29:08.687034Z",
"url": "https://files.pythonhosted.org/packages/43/e2/0ff8b9af632a22f0fcb621afeab2f29f788ace4b5476fe6fc31e06bfe3e0/xor_cipher_core-1.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-21 10:29:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "xor-cipher",
"github_project": "xor-cipher-core",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "xor-cipher-core"
}