encryptme


Nameencryptme JSON
Version 2.2.5 PyPI version JSON
download
home_page
SummaryA simple encryption library
upload_time2023-08-23 00:42:28
maintainer
docs_urlNone
authorAdjei Collins
requires_python
licenseMIT
keywords cryptography encryption encrypt message
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # EncryptMe Library

EncryptMe is a simple encryption library developed by ADJEI COLLINS, a Cybersecurity student from Accra Technical University, Ghana.

## Features

- Encrypt and decrypt messages using a provided key.
- Save encrypted messages to files.
- Read encrypted messages from files.
- Display decrypted messages.

## Installation

You can install the library using pip:
pip install encryptme



```bash
pip install encryptme

Change Log
==========

1.5.0 (22/08/2023)

## USAGE GUIDE
# This guide demonstrates how to use the 'encryptme' library to encrypt and decrypt messages.
import encryptme

# Encryption key (known only to the sender)
encryption_key = 12345

# Message to encrypt
message = "Hello, this is a secret message!"

# Encrypt the message
encrypted_message = encryptme.encrypt(message, encryption_key)

# Save encrypted message to a file
encrypted_message.save("encrypted_message.txt")

# Decrypting the message
# (Importing the module again to ensure access to all functions)
import encryptme

# Encryption key (known only to the receiver)
decryption_key = 12345

# Read encrypted message from the file
encrypted_message = encryptme.read("encrypted_message.txt")

# Decrypt the message
decrypted_message = encryptme.decrypt(encrypted_message, decryption_key)

# Show decrypted message
decrypted_message.show()

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "encryptme",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "cryptography encryption encrypt message",
    "author": "Adjei Collins",
    "author_email": "adjeicollins1672@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/01/ac/c6279c38af4730f693167df95d1847d431e0793c90f416843e833f3e06d8/encryptme-2.2.5.tar.gz",
    "platform": null,
    "description": "# EncryptMe Library\r\n\r\nEncryptMe is a simple encryption library developed by ADJEI COLLINS, a Cybersecurity student from Accra Technical University, Ghana.\r\n\r\n## Features\r\n\r\n- Encrypt and decrypt messages using a provided key.\r\n- Save encrypted messages to files.\r\n- Read encrypted messages from files.\r\n- Display decrypted messages.\r\n\r\n## Installation\r\n\r\nYou can install the library using pip:\r\npip install encryptme\r\n\r\n\r\n\r\n```bash\r\npip install encryptme\r\n\r\nChange Log\r\n==========\r\n\r\n1.5.0 (22/08/2023)\r\n\r\n## USAGE GUIDE\r\n# This guide demonstrates how to use the 'encryptme' library to encrypt and decrypt messages.\r\nimport encryptme\r\n\r\n# Encryption key (known only to the sender)\r\nencryption_key = 12345\r\n\r\n# Message to encrypt\r\nmessage = \"Hello, this is a secret message!\"\r\n\r\n# Encrypt the message\r\nencrypted_message = encryptme.encrypt(message, encryption_key)\r\n\r\n# Save encrypted message to a file\r\nencrypted_message.save(\"encrypted_message.txt\")\r\n\r\n# Decrypting the message\r\n# (Importing the module again to ensure access to all functions)\r\nimport encryptme\r\n\r\n# Encryption key (known only to the receiver)\r\ndecryption_key = 12345\r\n\r\n# Read encrypted message from the file\r\nencrypted_message = encryptme.read(\"encrypted_message.txt\")\r\n\r\n# Decrypt the message\r\ndecrypted_message = encryptme.decrypt(encrypted_message, decryption_key)\r\n\r\n# Show decrypted message\r\ndecrypted_message.show()\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A simple encryption library",
    "version": "2.2.5",
    "project_urls": null,
    "split_keywords": [
        "cryptography",
        "encryption",
        "encrypt",
        "message"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aabfe88d562e5f43e676fc29f3c6d06b51d7e78edc5d1eb71c1a1e833b5063ae",
                "md5": "e13f98e75c0343bfa8797502aba4261a",
                "sha256": "7c687451edef004cb4e914f234e0431efc3832a5c5e1cae237829cdb21956489"
            },
            "downloads": -1,
            "filename": "encryptme-2.2.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e13f98e75c0343bfa8797502aba4261a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3662,
            "upload_time": "2023-08-23T00:42:26",
            "upload_time_iso_8601": "2023-08-23T00:42:26.852062Z",
            "url": "https://files.pythonhosted.org/packages/aa/bf/e88d562e5f43e676fc29f3c6d06b51d7e78edc5d1eb71c1a1e833b5063ae/encryptme-2.2.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01acc6279c38af4730f693167df95d1847d431e0793c90f416843e833f3e06d8",
                "md5": "374f00ac423aa088752a6f20e77d442b",
                "sha256": "605608499b1aa46f2a2ecf0a9196a356be75f1cb3373849575aa5c29f890eb7a"
            },
            "downloads": -1,
            "filename": "encryptme-2.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "374f00ac423aa088752a6f20e77d442b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3468,
            "upload_time": "2023-08-23T00:42:28",
            "upload_time_iso_8601": "2023-08-23T00:42:28.220115Z",
            "url": "https://files.pythonhosted.org/packages/01/ac/c6279c38af4730f693167df95d1847d431e0793c90f416843e833f3e06d8/encryptme-2.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-23 00:42:28",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "encryptme"
}
        
Elapsed time: 0.10262s