str-basic-encryption


Namestr-basic-encryption JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/KidiXDev/str-basic-encryption
SummarySimple library to encrypt strings with MD5, SHA256 and SHA512 hashes
upload_time2023-12-21 13:45:04
maintainer
docs_urlNone
authorKidiXDev
requires_python
licenseMIT
keywords str md5 sha256 sha512 encryption
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # String Basic Encryption
Python simple library to encrypt strings with MD5, SHA256 and SHA512 hashes

## Installation
```shell
pip install str-basic-encryption
```

## Usage
Basic Usage:
```python
from str_basic_encryption import StrEncryption

encryptor = StrEncryption()

some_text = "Hello World!"
result = encryptor.str2md5(some_text)
print(f"Encrypted String: {result}")
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/KidiXDev/str-basic-encryption",
    "name": "str-basic-encryption",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "str,md5,sha256,sha512,encryption",
    "author": "KidiXDev",
    "author_email": "<kidixdev@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/12/3a/8e39bade7f024ccf73e43d930a2f9d189a5438a747f90275edfad123dc70/str-basic-encryption-0.0.1.tar.gz",
    "platform": null,
    "description": "# String Basic Encryption\r\nPython simple library to encrypt strings with MD5, SHA256 and SHA512 hashes\r\n\r\n## Installation\r\n```shell\r\npip install str-basic-encryption\r\n```\r\n\r\n## Usage\r\nBasic Usage:\r\n```python\r\nfrom str_basic_encryption import StrEncryption\r\n\r\nencryptor = StrEncryption()\r\n\r\nsome_text = \"Hello World!\"\r\nresult = encryptor.str2md5(some_text)\r\nprint(f\"Encrypted String: {result}\")\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simple library to encrypt strings with MD5, SHA256 and SHA512 hashes",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "https://github.com/KidiXDev/str-basic-encryption"
    },
    "split_keywords": [
        "str",
        "md5",
        "sha256",
        "sha512",
        "encryption"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fa0c09a69a426e0872ccf433ebae2f591f1b60a8f6ceee8af3a526ced688b19",
                "md5": "2f700498970f805df5695332ffcb0eec",
                "sha256": "966cb75a04bfd76811c47489ec81360591d37c8239f09faa9be74fbb799d2c2a"
            },
            "downloads": -1,
            "filename": "str_basic_encryption-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2f700498970f805df5695332ffcb0eec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3090,
            "upload_time": "2023-12-21T13:45:03",
            "upload_time_iso_8601": "2023-12-21T13:45:03.160973Z",
            "url": "https://files.pythonhosted.org/packages/1f/a0/c09a69a426e0872ccf433ebae2f591f1b60a8f6ceee8af3a526ced688b19/str_basic_encryption-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "123a8e39bade7f024ccf73e43d930a2f9d189a5438a747f90275edfad123dc70",
                "md5": "844a964388ba857719b97e0e2ef6b313",
                "sha256": "02b50c2d0b357314e79a0109b317846e95b748e1ae4dd5d01264bf8b8e5dcd33"
            },
            "downloads": -1,
            "filename": "str-basic-encryption-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "844a964388ba857719b97e0e2ef6b313",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2597,
            "upload_time": "2023-12-21T13:45:04",
            "upload_time_iso_8601": "2023-12-21T13:45:04.512170Z",
            "url": "https://files.pythonhosted.org/packages/12/3a/8e39bade7f024ccf73e43d930a2f9d189a5438a747f90275edfad123dc70/str-basic-encryption-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-21 13:45:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KidiXDev",
    "github_project": "str-basic-encryption",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "str-basic-encryption"
}
        
Elapsed time: 0.15475s