{ "info": { "author": "Simon Biewald", "author_email": "simon@fam-biewald.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: Public Domain", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Security", "Topic :: Security :: Cryptography" ], "description": "===========\nPython XTEA\n===========\n\n.. image:: https://api.codeclimate.com/v1/badges/563d6ad2607d6ed6fda3/maintainability\n :target: https://codeclimate.com/github/Varbin/xtea/maintainability\n :alt: Maintainability\n\n.. image:: https://api.codeclimate.com/v1/badges/563d6ad2607d6ed6fda3/test_coverage\n :target: https://codeclimate.com/github/Varbin/xtea/test_coverage\n :alt: Test Coverage\n\n.. image:: https://travis-ci.org/Varbin/xtea.svg?branch=master\n :target: https://travis-ci.org/Varbin/xtea\n :alt: Travis CI build status\n\n.. image:: https://ci.appveyor.com/api/projects/status/mgfc1g53vvc9umkl?svg=true\n :target: https://ci.appveyor.com/project/Varbin/xtea/\n :alt: Appveyor CI build status\n\n.. image:: https://readthedocs.org/projects/xtea/badge/?version=latest\n :target: https://xtea.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\nThis is an XTEA-Cipher implementation in Python (eXtended Tiny Encryption Algorithm).\n\n XTEA is a blockcipher with 8 bytes blocksize and 16 bytes Keysize (128-Bit).\n The algorithm is secure at 2014 with the recommend 64 rounds (32 cycles). This\n implementation supports following modes of operation:\n ECB, CBC, CFB, OFB, CTR\n\n\nExample:\n\n >>> from xtea import *\n >>> key = \" \"*16 # Never use this\n >>> text = \"This is a text. \"*8\n >>> x = new(key, mode=MODE_OFB, IV=\"12345678\")\n >>> c = x.encrypt(text)\n >>> text == x.decrypt(c)\n True\n\n\nResources\n=========\n\n* PyPi: https://pypi.org/project/xtea\n* Docs: http://xtea.readthedocs.io/\n* Source code: https://github.com/varbin/xtea\n* Issue tracker: https://github.com/varbin/xtea/issues\n\n\nChangelog\n---------\n\nVersion 0.7.1, former 0.6.1 / 0.7.0; Jun 16, 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Improved tests\n- PEP8-style formatting\n- Unittests: Counter, modes (but not results of them!), test vectors\n- [BREAKING CHANGE] Counter class is now in xtea.counter\n- Python 3.3 is not tested anymore on Travis CI\n- [BREAKING CHANGE] CFB mode is now correctly implemented.\n By setting ``partition_size`` it is possible to set the\n internal partition size (in bits) as per PEP-272.\n- Python 3: An optional C extension improves speed upto a factor of 10.\n- [BREAKING CHANGE] `block_size` and `key_size` is now in bytes.\n- Skipped 0.7.0 with\n\n(unreleased) Version 0.6.0; Oct 16, 2016\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Python 3 does work now\n- [BREAKING CHANGE] counters cannot return numbers any more, they must return bytestrings now\n- [BREAKING CHANGE] Cipher objects remember state, so two consecutive calls to XTEACipher.encrypt should not return the same\n- improved documentation\n\n(unreleased) Version 0.5.0; Oct 15, 2016\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Removed CBCMAC\n\nVersion 0.4.1; Jul 30, 2015\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed installer\n\nVersion 0.4.0; Jul 12, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Buggless & PEP compliant CTR\n- CTR mode works with strings now\n- raises DeprecatedWarning if a number is returned\n- CBCMAC class added (use static method CBCMAC.new(args) to create)\n\nVersion 0.3.2; Jul 11, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Minor Fixes\n\nVersion 0.3.1; Jul 11, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Minor Fixes\n- Fixed that the length of data will not be checked\n\nVersion 0.3.0; Jul 11, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added CFB mode\n- Fully working with PEP 272\n- Raising NotImplementedError only on PGP-CFB (OpenPGP) mode\n- Wheel support and changelog (0.2.1)\n\n(unreleased) Version 0.2.1 - dev; Jul 10, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added better wheel support for uploading (just for me) with a setup.cfg\n- Added this file (auto uploading on pypi/warehouse and github)\n- (upload.py for github)\n\nVersion 0.2.0; Jul 9, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added a test feature; warning in CTR\n- Raises warning on CTR, added a handler that CTR will not crash anymore ;)\n\nVersion 0.1.1; Jul 9, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Module raises a NotImplementedError on CFB\n- Minor changes\n\nVersion 0.1; Jun 22, 2014\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Initial release\n- Supports all mode except CFB\n- Buggy CTR ( \"\u00c3\u0178\" = \"\\\\xc3\\\\x9f\" )\n- Working with PEP 272, default mode is ECB\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/Varbin/xtea", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Varbin/xtea/wiki", "keywords": "xtea tea encryption cryptography", "license": "Public Domain", "maintainer": "", "maintainer_email": "", "name": "xtea", "package_url": "https://pypi.org/project/xtea/", "platform": "", "project_url": "https://pypi.org/project/xtea/", "project_urls": { "Download": "https://github.com/Varbin/xtea", "Homepage": "https://github.com/Varbin/xtea/wiki" }, "release_url": "https://pypi.org/project/xtea/0.7.1/", "requires_dist": [ "pep272-encryption (>=0.3)" ], "requires_python": "", "summary": "A python version of XTEA", "version": "0.7.1" }, "last_serial": 5407531, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "6647a280ace35c4367278d8cab34b433", "sha256": "6efa918ce03defc40ffec8686cda857e02cb3fa043f4090b7fb335665610afe9" }, "downloads": -1, "filename": "xtea-0.1.tar.gz", "has_sig": true, "md5_digest": "6647a280ace35c4367278d8cab34b433", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3469, "upload_time": "2014-06-22T08:57:43", "url": "https://files.pythonhosted.org/packages/73/6f/8255027082f423baa652d4504c7a36b6a0f2195848262d0f00a55ef18c74/xtea-0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "7da4950f284afa7988b310096f4aaeae", "sha256": "2598bb985af97967497f952ad1e0abd65ab7b54b1f0b99d543513b19dc7a44f3" }, "downloads": -1, "filename": "xtea-0.1.zip", "has_sig": true, "md5_digest": "7da4950f284afa7988b310096f4aaeae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4803, "upload_time": "2014-06-22T08:57:41", "url": "https://files.pythonhosted.org/packages/53/6a/bcfedecd369831120289aa32929c461cbe5a7f0babf6043e39b8669a9b53/xtea-0.1.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "9f60a6afc4adf3f24bf39b52c9a4105e", "sha256": "5e94a4041cc6ceca9cd266e73a6dc5f49b2a8601641c990dbaf6c809716d0923" }, "downloads": -1, "filename": "xtea-0.1.1-py3-none-any.whl", "has_sig": true, "md5_digest": "9f60a6afc4adf3f24bf39b52c9a4105e", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 5364, "upload_time": "2014-07-09T12:03:05", "url": "https://files.pythonhosted.org/packages/34/78/7f34c41448125712e15b9c9d8870964513c5e8130e0ea7007c6f58364c31/xtea-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0a5d1cbe87e471663ec1ed2a3be44a8", "sha256": "d4ede0909568178f978f7fe01c38c71238d2eee8e4c9e10be896cdbd56405156" }, "downloads": -1, "filename": "xtea-0.1.1.tar.gz", "has_sig": true, "md5_digest": "d0a5d1cbe87e471663ec1ed2a3be44a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3766, "upload_time": "2014-07-09T12:02:55", "url": "https://files.pythonhosted.org/packages/1c/1d/b9067a2a2a24f2e33b254b0c0d8767ae6bcc577cdc7cc0f3172267313fc1/xtea-0.1.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "575f7e597e6803c59082c1cd348b620a", "sha256": "2287fcd68877eeb0d709278185e47a89b355a651146830d502152ace19d2a083" }, "downloads": -1, "filename": "xtea-0.1.1.win32.exe", "has_sig": true, "md5_digest": "575f7e597e6803c59082c1cd348b620a", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 196293, "upload_time": "2014-07-09T12:03:03", "url": "https://files.pythonhosted.org/packages/a8/02/010ecce25cfa45a1bce6c134034c092a659a994010fe5de24d46b4b187ba/xtea-0.1.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "e41574c6fb3b6db310fa32f8ca552098", "sha256": "b3ff004d45ebb55dfb0895a19d8693814cbd14717ba342056b824394ec549458" }, "downloads": -1, "filename": "xtea-0.1.1.zip", "has_sig": true, "md5_digest": "e41574c6fb3b6db310fa32f8ca552098", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6013, "upload_time": "2014-07-09T12:02:58", "url": "https://files.pythonhosted.org/packages/ba/c3/70f09d0adc2782933cafd187931afe9a9568a19238408d31626d76429cac/xtea-0.1.1.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "6b7850bcd2a361de13eddd35b3b668aa", "sha256": "2d736c69bf56ac099f6d9b21f5a146587212264733abee23e61c7a6d9576996c" }, "downloads": -1, "filename": "xtea-0.2.0.tar.gz", "has_sig": true, "md5_digest": "6b7850bcd2a361de13eddd35b3b668aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4474, "upload_time": "2014-07-09T20:40:50", "url": "https://files.pythonhosted.org/packages/30/26/79a05259b89083b7d0a0c3394460dfba5cc2536280d1bcfdef0509698582/xtea-0.2.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "38a0d730b9f64b043c87777078243441", "sha256": "8e2e4d4e94c166f882f04c8e581011cc12ac150583111cc0d90a6b0e888d9970" }, "downloads": -1, "filename": "xtea-0.2.0.win32.exe", "has_sig": true, "md5_digest": "38a0d730b9f64b043c87777078243441", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 197062, "upload_time": "2014-07-09T20:40:55", "url": "https://files.pythonhosted.org/packages/31/d7/76500dfc26100672f71a91e3809e7ca2d7e4bd28908f9dfabd8d2af7dd64/xtea-0.2.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "f89d01a7c8ba72bdd6bb6f9cd41245fd", "sha256": "f52b0d1af013d29b2be5d1fb51ca8013b914a93db56b7a425dc1092f2e675652" }, "downloads": -1, "filename": "xtea-0.2.0.zip", "has_sig": true, "md5_digest": "f89d01a7c8ba72bdd6bb6f9cd41245fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6891, "upload_time": "2014-07-09T20:40:48", "url": "https://files.pythonhosted.org/packages/b4/7b/25cd9a3e38d02f868816d2068291b56dca289a4aac96f3d4b79eb4d8945a/xtea-0.2.0.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "972c04f4dd8c084f232132eb48bfdd1a", "sha256": "61a5cd9981484a78c08ce040bd91541fe979f0e2d748d2beae8f73675b819d50" }, "downloads": -1, "filename": "xtea-0.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "972c04f4dd8c084f232132eb48bfdd1a", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 7293, "upload_time": "2014-07-11T20:12:09", "url": "https://files.pythonhosted.org/packages/0b/57/f31440766343dff5624cb43bbe7247b12e5fa39d64e1caeabae97e2eb75b/xtea-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9ac7aadc0fc6b821f1d5732643b3331", "sha256": "579f2c4d259aa21b1e455318963cb86c3d49b86ed11c7b92bc09ceb0e2f6ce40" }, "downloads": -1, "filename": "xtea-0.3.1.tar.gz", "has_sig": true, "md5_digest": "c9ac7aadc0fc6b821f1d5732643b3331", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5309, "upload_time": "2014-07-11T20:12:01", "url": "https://files.pythonhosted.org/packages/3d/96/2f622a04b88028cf72494235e158d1c670b4d3e02f4ed9da29cd26b9390e/xtea-0.3.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "9bc22a8609bd2003e7d11be236860b6a", "sha256": "fa18afe7ebcb5176972b9fb8c4688aabf94ed3a38e2a40750fc80e486db85523" }, "downloads": -1, "filename": "xtea-0.3.1.win32.exe", "has_sig": true, "md5_digest": "9bc22a8609bd2003e7d11be236860b6a", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 199047, "upload_time": "2014-07-11T20:12:05", "url": "https://files.pythonhosted.org/packages/4a/94/eeb8d735bfb86635bc4e73b2bdfd5040c440de63403e00ac3e0fb60b07c8/xtea-0.3.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "51d4fe28a93f105316063694e9b367dc", "sha256": "fd83236b30fc30cd47eecbf0549fc146635744b8977cd922006400a1d8a08857" }, "downloads": -1, "filename": "xtea-0.3.1.zip", "has_sig": true, "md5_digest": "51d4fe28a93f105316063694e9b367dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8315, "upload_time": "2014-07-11T20:11:58", "url": "https://files.pythonhosted.org/packages/99/bf/c7e084ea82964929c79a6974419c5cd3508b394c1709463c3c4df74b40de/xtea-0.3.1.zip" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "b7b2908830ae5a65e605a24eb62801bc", "sha256": "dc2d5b70e43e14a37acdd80c456cfd2c35ab77a4c75063fdcb3f4d19feb64cbb" }, "downloads": -1, "filename": "xtea-0.3.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b7b2908830ae5a65e605a24eb62801bc", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 7295, "upload_time": "2014-07-11T20:18:31", "url": "https://files.pythonhosted.org/packages/1f/71/6bc13f6f895b8faa10030e81ebad836dc186d7c1e12f7f708005d2274c6c/xtea-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16022d83d46c6911741dbdb47f0c950f", "sha256": "b822454beec409ef752084918c8ab6e28fd65f74fd3dcaa716ee06f1cb581824" }, "downloads": -1, "filename": "xtea-0.3.2.tar.gz", "has_sig": true, "md5_digest": "16022d83d46c6911741dbdb47f0c950f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5315, "upload_time": "2014-07-11T20:18:24", "url": "https://files.pythonhosted.org/packages/0e/87/7d367774fc220da29e5ac88165dceeb0652b3076787c846d85f14449e369/xtea-0.3.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "18c8ab7d7ab08422b9aa58840a0fe917", "sha256": "823934f315ffa328fa019363ca3ad6d830d6ba3020351515a79a046ee3578094" }, "downloads": -1, "filename": "xtea-0.3.2.win32.exe", "has_sig": true, "md5_digest": "18c8ab7d7ab08422b9aa58840a0fe917", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 199054, "upload_time": "2014-07-11T20:18:28", "url": "https://files.pythonhosted.org/packages/64/77/7c771a6df2b82498dadafe093ae782ae841ccacdf7d68de18400cb30de8f/xtea-0.3.2.win32.exe" }, { "comment_text": "", "digests": { "md5": "061df59de7a72625ddeb6af7ac68a07d", "sha256": "bd32131dbde0b4f38a494ec257aaee321f4b7d623d3ddf599d9d7f3bcd466202" }, "downloads": -1, "filename": "xtea-0.3.2.zip", "has_sig": true, "md5_digest": "061df59de7a72625ddeb6af7ac68a07d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8330, "upload_time": "2014-07-11T20:18:22", "url": "https://files.pythonhosted.org/packages/da/e2/4066a827f205f2ed8daee3751b8ec1f0cc8e8f33fa25bcf2970e59ad2765/xtea-0.3.2.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "9d2698ee9077192dc4a3fd4a316b0d67", "sha256": "d30daa4e09068fdd09e76a84278150dca98301afda1736ff9decd93ac188233d" }, "downloads": -1, "filename": "xtea-0.4.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9d2698ee9077192dc4a3fd4a316b0d67", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 8371, "upload_time": "2014-07-15T19:28:36", "url": "https://files.pythonhosted.org/packages/63/19/6d44d9d99b57e5d5700ee4f349778fbffda67f87c5254220f792c92b327d/xtea-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90111dc3414f3a5e45c153ed2ab6d043", "sha256": "5628b140fe2d39bbe0b856a41cee08cafbc1c005c02bb96bf8c5e8a5150b72ba" }, "downloads": -1, "filename": "xtea-0.4.0.tar.gz", "has_sig": true, "md5_digest": "90111dc3414f3a5e45c153ed2ab6d043", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6232, "upload_time": "2014-07-15T19:21:44", "url": "https://files.pythonhosted.org/packages/1a/e5/9fa52e19b3175ceefd0519d48ee8c44be3396111ee3db9e3039fd46df4f4/xtea-0.4.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "8978caf27ace0eea6da89a88a0ec8a7f", "sha256": "a0beb7bb50758a8c9168f7f00537bbb48311493a8c634ab932ff22ea83d5fd48" }, "downloads": -1, "filename": "xtea-0.4.0.win32.exe", "has_sig": true, "md5_digest": "8978caf27ace0eea6da89a88a0ec8a7f", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 200345, "upload_time": "2014-07-15T19:28:33", "url": "https://files.pythonhosted.org/packages/91/9e/69d9ae04f9614a32e677ea3c140805b663f8c65426ba8860e0ed2cb59838/xtea-0.4.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "791be41242bae0b05075e6b184ea334a", "sha256": "e3c52f20fa54b6b6664ae153d2265cd6eec974aed039e53ceb1ce1a37cec8223" }, "downloads": -1, "filename": "xtea-0.4.0.zip", "has_sig": true, "md5_digest": "791be41242bae0b05075e6b184ea334a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9470, "upload_time": "2014-07-15T19:21:47", "url": "https://files.pythonhosted.org/packages/c0/16/fa7adee1ac3ec4114b2a2b35d8e46923d0baba29401d4fa206bfa3c94aed/xtea-0.4.0.zip" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "e17326effa465c4ed0a24c0a0fdae602", "sha256": "2dbcfe68655d73007edc71b3554062387da3a288ec4c7770e0a470a1507b612a" }, "downloads": -1, "filename": "xtea-0.4.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e17326effa465c4ed0a24c0a0fdae602", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 7136, "upload_time": "2015-07-30T21:45:42", "url": "https://files.pythonhosted.org/packages/be/de/7f7d92050cd3cfde88361d80b6a54e089c30d6d614a7ca4b5105fa71e979/xtea-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c3363a7faaba282545d3f9d03ee6c941", "sha256": "5c42bb8cf1f4b52df7a3d5a28c8c9eb2fdcf26b012447a81d72c3b5e48c27325" }, "downloads": -1, "filename": "xtea-0.4.1.tar.bz2", "has_sig": true, "md5_digest": "c3363a7faaba282545d3f9d03ee6c941", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5911, "upload_time": "2015-07-30T21:45:31", "url": "https://files.pythonhosted.org/packages/52/a9/32685acf856b0de2039dec6f0e0cd96602d498ace0419752a0a4765ea90b/xtea-0.4.1.tar.bz2" }, { "comment_text": "", "digests": { "md5": "c0b63eba6067c602d52ba816a55573b6", "sha256": "02b54a0376d1e609e6d5f7e12d6820371939ee4998a072961f7cb90250537cac" }, "downloads": -1, "filename": "xtea-0.4.1.tar.gz", "has_sig": true, "md5_digest": "c0b63eba6067c602d52ba816a55573b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5653, "upload_time": "2015-07-30T21:45:21", "url": "https://files.pythonhosted.org/packages/5a/26/349e871392d8728f6d3eaaeb9f6f1dcc4b90840f32707234d0f8d3bb1627/xtea-0.4.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "952ad489198ad37c4fc444f590ff037a", "sha256": "02403541141c3c1580e119f02a49835e0c1e008a4f5c660b29a7b2b38f1de5aa" }, "downloads": -1, "filename": "xtea-0.4.1.zip", "has_sig": true, "md5_digest": "952ad489198ad37c4fc444f590ff037a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8141, "upload_time": "2015-07-30T21:45:12", "url": "https://files.pythonhosted.org/packages/49/c0/6b639453bd681527e1fdcaa744be0c6728d69b23f9081aadc7bf25adc269/xtea-0.4.1.zip" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "c4a9cd5d2c316f4240b82b4f8c998fc9", "sha256": "59d00e875ccb441b153e9e9dbcf63421bfb87b8417816a8229936a8f21a4beeb" }, "downloads": -1, "filename": "xtea-0.7.1-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "c4a9cd5d2c316f4240b82b4f8c998fc9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11566, "upload_time": "2019-06-16T20:46:46", "url": "https://files.pythonhosted.org/packages/8f/1f/fc70cd46e54de7724603e9f874f85c60789e6248ce31695483ce6db4d2fb/xtea-0.7.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8405f0a955bf20a3b3393bc06b2ca607", "sha256": "56a6b60898648e27a8c7b2f698672807c9ddd6f22f06915bc459f2de465f1aaa" }, "downloads": -1, "filename": "xtea-0.7.1-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "8405f0a955bf20a3b3393bc06b2ca607", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12346, "upload_time": "2019-06-16T20:46:48", "url": "https://files.pythonhosted.org/packages/02/48/875c211a9c878d3c8bca93ef937f2e3e060270dc99fbbe903ed969ff6109/xtea-0.7.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "53779ee3c830bb79105fcd5ac2186c8c", "sha256": "876e6af9ba01805c08bd4b8ad6346c08889fe6727506f17de15b390e18042ffc" }, "downloads": -1, "filename": "xtea-0.7.1-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "53779ee3c830bb79105fcd5ac2186c8c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11571, "upload_time": "2019-06-16T20:46:51", "url": "https://files.pythonhosted.org/packages/c9/00/d9bc84b9a08b610fbae6cc76e9dfecfcc408f387271c46998b3165ef424b/xtea-0.7.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1fa1f8440a3f8e201a97d74889ab5434", "sha256": "27b0c0a242318cf72fdc9fc2a257e60bf75ba075861b77fcb7f80e8381615c70" }, "downloads": -1, "filename": "xtea-0.7.1-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "1fa1f8440a3f8e201a97d74889ab5434", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12349, "upload_time": "2019-06-16T20:46:53", "url": "https://files.pythonhosted.org/packages/ef/33/2abea3ac604f109cb16a25befd52504cdf4ad84360e872b7a3531ef271c0/xtea-0.7.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3c0fdea88734fae367134b336c848e50", "sha256": "3a591c8b19732004f8dddafb0dc9d5098d3f650de2df1f2bcf56c0a93e451a96" }, "downloads": -1, "filename": "xtea-0.7.1-cp37-cp37m-win32.whl", "has_sig": true, "md5_digest": "3c0fdea88734fae367134b336c848e50", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11570, "upload_time": "2019-06-16T20:46:55", "url": "https://files.pythonhosted.org/packages/49/1d/671ba3b9988c8d65cf8e23a5a013b5a83fcd2955789c70668de6557e0af3/xtea-0.7.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "dc20b3deceda097b247bce1fe2863b65", "sha256": "a24c1aa4bed085d9b35b75ee31790ec71ef2992b8007f7203c0da4911fd31c34" }, "downloads": -1, "filename": "xtea-0.7.1-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "dc20b3deceda097b247bce1fe2863b65", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12350, "upload_time": "2019-06-16T20:46:58", "url": "https://files.pythonhosted.org/packages/ce/74/04336e26549ca8457947273aeb22d12225141fe2175678fb089b0986c2b3/xtea-0.7.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "80ee3bcf855072f31251cf5816e0445f", "sha256": "f2d02406d375faa57f6bd017c17aa70e02cfbd565f9060e44bfe8cb4cbfec7e2" }, "downloads": -1, "filename": "xtea-0.7.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "80ee3bcf855072f31251cf5816e0445f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6883, "upload_time": "2019-06-16T20:47:00", "url": "https://files.pythonhosted.org/packages/9e/a2/9c1af8d6b2636888ee26d7292aa97ea7ad83d45da81d386817eacebbac09/xtea-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "851d54bb20ac73aef8eacdf4ff05869f", "sha256": "61f770d4d089f2aba42d4dc888fde98688b7d76af5ae50116b9ec53161e160ab" }, "downloads": -1, "filename": "xtea-0.7.1.tar.gz", "has_sig": true, "md5_digest": "851d54bb20ac73aef8eacdf4ff05869f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7819, "upload_time": "2019-06-16T20:47:02", "url": "https://files.pythonhosted.org/packages/50/f5/834b9ee6ce7b2c53ff058a19029510cf5420585b3b1ae6fe8b6b0146a84f/xtea-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c4a9cd5d2c316f4240b82b4f8c998fc9", "sha256": "59d00e875ccb441b153e9e9dbcf63421bfb87b8417816a8229936a8f21a4beeb" }, "downloads": -1, "filename": "xtea-0.7.1-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "c4a9cd5d2c316f4240b82b4f8c998fc9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11566, "upload_time": "2019-06-16T20:46:46", "url": "https://files.pythonhosted.org/packages/8f/1f/fc70cd46e54de7724603e9f874f85c60789e6248ce31695483ce6db4d2fb/xtea-0.7.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8405f0a955bf20a3b3393bc06b2ca607", "sha256": "56a6b60898648e27a8c7b2f698672807c9ddd6f22f06915bc459f2de465f1aaa" }, "downloads": -1, "filename": "xtea-0.7.1-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "8405f0a955bf20a3b3393bc06b2ca607", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12346, "upload_time": "2019-06-16T20:46:48", "url": "https://files.pythonhosted.org/packages/02/48/875c211a9c878d3c8bca93ef937f2e3e060270dc99fbbe903ed969ff6109/xtea-0.7.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "53779ee3c830bb79105fcd5ac2186c8c", "sha256": "876e6af9ba01805c08bd4b8ad6346c08889fe6727506f17de15b390e18042ffc" }, "downloads": -1, "filename": "xtea-0.7.1-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "53779ee3c830bb79105fcd5ac2186c8c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11571, "upload_time": "2019-06-16T20:46:51", "url": "https://files.pythonhosted.org/packages/c9/00/d9bc84b9a08b610fbae6cc76e9dfecfcc408f387271c46998b3165ef424b/xtea-0.7.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1fa1f8440a3f8e201a97d74889ab5434", "sha256": "27b0c0a242318cf72fdc9fc2a257e60bf75ba075861b77fcb7f80e8381615c70" }, "downloads": -1, "filename": "xtea-0.7.1-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "1fa1f8440a3f8e201a97d74889ab5434", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12349, "upload_time": "2019-06-16T20:46:53", "url": "https://files.pythonhosted.org/packages/ef/33/2abea3ac604f109cb16a25befd52504cdf4ad84360e872b7a3531ef271c0/xtea-0.7.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3c0fdea88734fae367134b336c848e50", "sha256": "3a591c8b19732004f8dddafb0dc9d5098d3f650de2df1f2bcf56c0a93e451a96" }, "downloads": -1, "filename": "xtea-0.7.1-cp37-cp37m-win32.whl", "has_sig": true, "md5_digest": "3c0fdea88734fae367134b336c848e50", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11570, "upload_time": "2019-06-16T20:46:55", "url": "https://files.pythonhosted.org/packages/49/1d/671ba3b9988c8d65cf8e23a5a013b5a83fcd2955789c70668de6557e0af3/xtea-0.7.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "dc20b3deceda097b247bce1fe2863b65", "sha256": "a24c1aa4bed085d9b35b75ee31790ec71ef2992b8007f7203c0da4911fd31c34" }, "downloads": -1, "filename": "xtea-0.7.1-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "dc20b3deceda097b247bce1fe2863b65", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12350, "upload_time": "2019-06-16T20:46:58", "url": "https://files.pythonhosted.org/packages/ce/74/04336e26549ca8457947273aeb22d12225141fe2175678fb089b0986c2b3/xtea-0.7.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "80ee3bcf855072f31251cf5816e0445f", "sha256": "f2d02406d375faa57f6bd017c17aa70e02cfbd565f9060e44bfe8cb4cbfec7e2" }, "downloads": -1, "filename": "xtea-0.7.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "80ee3bcf855072f31251cf5816e0445f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6883, "upload_time": "2019-06-16T20:47:00", "url": "https://files.pythonhosted.org/packages/9e/a2/9c1af8d6b2636888ee26d7292aa97ea7ad83d45da81d386817eacebbac09/xtea-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "851d54bb20ac73aef8eacdf4ff05869f", "sha256": "61f770d4d089f2aba42d4dc888fde98688b7d76af5ae50116b9ec53161e160ab" }, "downloads": -1, "filename": "xtea-0.7.1.tar.gz", "has_sig": true, "md5_digest": "851d54bb20ac73aef8eacdf4ff05869f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7819, "upload_time": "2019-06-16T20:47:02", "url": "https://files.pythonhosted.org/packages/50/f5/834b9ee6ce7b2c53ff058a19029510cf5420585b3b1ae6fe8b6b0146a84f/xtea-0.7.1.tar.gz" } ] }