{ "info": { "author": "Ashish Shetty", "author_email": "shetty073@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# Textcipher\nPython module for text based cipher(s)\n\n#### List of available ciphers:\n* caesar Cipher (Shift Cipher)\n* more coming soon.....\n\n#### Example\n* Caesar Cipher\n```python\n\nfrom Textcipher.Ciphers import Caesar\n\n# Example message\nmsg = \"A quick brown fox jumped over the lazy dog.\"\n# Our key for encryption and decryption\nkey = 23\n\n# the message, key and the mode must be passed to the instance of Caesar\n# encryption or decryption depends on the 'mode' parameter. if mode is set True while encrypting then it must be\n# set to False for decrypting and vice versa.\n\nencrypt = Caesar(msg, key, True)\nencrypted_msg = encrypt.crypto()\nprint(encrypted_msg)\n\ndecrypt = Caesar(encrypt.crypto(), key, False)\ndecrypted_msg = decrypt.crypto()\nprint(decrypted_msg)\n\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Shetty073/Textcipher", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "Textcipher", "package_url": "https://pypi.org/project/Textcipher/", "platform": "", "project_url": "https://pypi.org/project/Textcipher/", "project_urls": { "Homepage": "https://github.com/Shetty073/Textcipher" }, "release_url": "https://pypi.org/project/Textcipher/0.0.1/", "requires_dist": null, "requires_python": "", "summary": "A text encryption/decryption package", "version": "0.0.1" }, "last_serial": 5407081, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "0f7e138139066f2b27ddc44c369c90e7", "sha256": "91c1a28490bccb7085130d976980008a927db64554b1fd8fb54f34eb5007ba40" }, "downloads": -1, "filename": "Textcipher-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0f7e138139066f2b27ddc44c369c90e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3387, "upload_time": "2019-06-16T17:42:28", "url": "https://files.pythonhosted.org/packages/ee/b1/cec6f56dc341e7ed553b7ee21b0b644caf79b1a77c8f19abb9640b93f827/Textcipher-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41543ffce4201e8c3e5b1c5723abcb3b", "sha256": "93c3b70343f654e192a2c763cef6ddab36800b23783fd4f92fcfba599e0320b3" }, "downloads": -1, "filename": "Textcipher-0.0.1.tar.gz", "has_sig": false, "md5_digest": "41543ffce4201e8c3e5b1c5723abcb3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2072, "upload_time": "2019-06-16T17:42:32", "url": "https://files.pythonhosted.org/packages/54/76/ada4f8773bcd478bb3080c143366d5e15e7ca4c2e634d8f95dc95345d41d/Textcipher-0.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0f7e138139066f2b27ddc44c369c90e7", "sha256": "91c1a28490bccb7085130d976980008a927db64554b1fd8fb54f34eb5007ba40" }, "downloads": -1, "filename": "Textcipher-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0f7e138139066f2b27ddc44c369c90e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3387, "upload_time": "2019-06-16T17:42:28", "url": "https://files.pythonhosted.org/packages/ee/b1/cec6f56dc341e7ed553b7ee21b0b644caf79b1a77c8f19abb9640b93f827/Textcipher-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41543ffce4201e8c3e5b1c5723abcb3b", "sha256": "93c3b70343f654e192a2c763cef6ddab36800b23783fd4f92fcfba599e0320b3" }, "downloads": -1, "filename": "Textcipher-0.0.1.tar.gz", "has_sig": false, "md5_digest": "41543ffce4201e8c3e5b1c5723abcb3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2072, "upload_time": "2019-06-16T17:42:32", "url": "https://files.pythonhosted.org/packages/54/76/ada4f8773bcd478bb3080c143366d5e15e7ca4c2e634d8f95dc95345d41d/Textcipher-0.0.1.tar.gz" } ] }