smartpasslib


Namesmartpasslib JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://github.com/smartlegionlab
Summary'Cross-platform library for generating smart passwords.'
upload_time2024-05-24 03:24:03
maintainerNone
docs_urlNone
authorA.A. Suvorov
requires_python>=3.6
licenseBSD 3-Clause License
keywords smart password smart pass gen smart password generator smartlegionlab
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Smart Passwords Library <sup>v0.4.2</sup>

***

[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/smartpasslib?label=pypi%20downloads)](https://pypi.org/project/smartpasslib/)
![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/smartpasslib)
[![PyPI](https://img.shields.io/pypi/v/smartpasslib)](https://pypi.org/project/smartpasslib)
[![GitHub](https://img.shields.io/github/license/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/blob/master/LICENSE)
[![PyPI - Format](https://img.shields.io/pypi/format/smartpasslib)](https://pypi.org/project/smartpasslib)

***

## Short Description:
___smartpasslib___ - Cross-platform library for generating smart passwords.

***

Author and developer: ___A.A. Suvorov.___

***

## Supported:

- Linux: All.
- Windows: 7/8/10.
- Termux (Android).

***

## Requirements:

[smartrandom](https://github.com/smartlegionlab/smartrandom/) - Random Data Generators.

***

## Help:

`pip install smartpasslib`

```python
from smartpasslib.generators import SmartPasswordMaster

login = 'login'
secret = 'secret'
length = 15

master = SmartPasswordMaster()

smart_password = master.get_smart_password(login=login, secret=secret, length=length)
smart_password2 = master.get_smart_password(login=login, secret=secret, length=length)
check_passwords = smart_password == smart_password2  # True

key = master.get_public_key(login, secret)

check_data = master.check_data(login, secret, key)

```

***

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

***

    Licensed under the terms of the BSD 3-Clause License
    (see LICENSE for details).
    Copyright © 2018-2024, A.A. Suvorov
    All rights reserved.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/smartlegionlab",
    "name": "smartpasslib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "smart password, smart pass gen, smart password generator, smartlegionlab",
    "author": "A.A. Suvorov",
    "author_email": "smartlegiondev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/6a/c0/7b0d93fe3b263c9e5ce73d42cc5122b117efc969f93f3e3b2f40b9f38403/smartpasslib-0.4.2.tar.gz",
    "platform": null,
    "description": "# Smart Passwords Library <sup>v0.4.2</sup>\n\n***\n\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/smartpasslib?label=pypi%20downloads)](https://pypi.org/project/smartpasslib/)\n![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/smartpasslib)\n[![PyPI](https://img.shields.io/pypi/v/smartpasslib)](https://pypi.org/project/smartpasslib)\n[![GitHub](https://img.shields.io/github/license/smartlegionlab/smartpasslib)](https://github.com/smartlegionlab/smartpasslib/blob/master/LICENSE)\n[![PyPI - Format](https://img.shields.io/pypi/format/smartpasslib)](https://pypi.org/project/smartpasslib)\n\n***\n\n## Short Description:\n___smartpasslib___ - Cross-platform library for generating smart passwords.\n\n***\n\nAuthor and developer: ___A.A. Suvorov.___\n\n***\n\n## Supported:\n\n- Linux: All.\n- Windows: 7/8/10.\n- Termux (Android).\n\n***\n\n## Requirements:\n\n[smartrandom](https://github.com/smartlegionlab/smartrandom/) - Random Data Generators.\n\n***\n\n## Help:\n\n`pip install smartpasslib`\n\n```python\nfrom smartpasslib.generators import SmartPasswordMaster\n\nlogin = 'login'\nsecret = 'secret'\nlength = 15\n\nmaster = SmartPasswordMaster()\n\nsmart_password = master.get_smart_password(login=login, secret=secret, length=length)\nsmart_password2 = master.get_smart_password(login=login, secret=secret, length=length)\ncheck_passwords = smart_password == smart_password2  # True\n\nkey = master.get_public_key(login, secret)\n\ncheck_data = master.check_data(login, secret, key)\n\n```\n\n***\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n***\n\n    Licensed under the terms of the BSD 3-Clause License\n    (see LICENSE for details).\n    Copyright \u00a9 2018-2024, A.A. Suvorov\n    All rights reserved.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "'Cross-platform library for generating smart passwords.'",
    "version": "0.4.2",
    "project_urls": {
        "Documentation": "https://github.com/smartlegionlab/smartpasslib/blob/master/README.md",
        "Homepage": "https://github.com/smartlegionlab",
        "Release notes": "https://github.com/smartlegionlab/smartpasslib/releases"
    },
    "split_keywords": [
        "smart password",
        " smart pass gen",
        " smart password generator",
        " smartlegionlab"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7cf23b14c71d6d569aa0d997ff34f67193e0b62af56b401de1ec048b90618d6",
                "md5": "b1e911c1fb60cf9db04d00f097eb55e8",
                "sha256": "32e00f27422cd3e7b2d3964fc99a45ad0abb24626da721ed74cb5f32a0a7666e"
            },
            "downloads": -1,
            "filename": "smartpasslib-0.4.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b1e911c1fb60cf9db04d00f097eb55e8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4857,
            "upload_time": "2024-05-24T03:24:02",
            "upload_time_iso_8601": "2024-05-24T03:24:02.227472Z",
            "url": "https://files.pythonhosted.org/packages/d7/cf/23b14c71d6d569aa0d997ff34f67193e0b62af56b401de1ec048b90618d6/smartpasslib-0.4.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ac07b0d93fe3b263c9e5ce73d42cc5122b117efc969f93f3e3b2f40b9f38403",
                "md5": "eddeb5825b55faa7cc2a45d7a262f4c5",
                "sha256": "925b0e265abc2dd544ee0e539e8d9a88eb08c9c5e04e4712d66edbbb0dc395cb"
            },
            "downloads": -1,
            "filename": "smartpasslib-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "eddeb5825b55faa7cc2a45d7a262f4c5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4219,
            "upload_time": "2024-05-24T03:24:03",
            "upload_time_iso_8601": "2024-05-24T03:24:03.987866Z",
            "url": "https://files.pythonhosted.org/packages/6a/c0/7b0d93fe3b263c9e5ce73d42cc5122b117efc969f93f3e3b2f40b9f38403/smartpasslib-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-24 03:24:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "smartlegionlab",
    "github_project": "smartpasslib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "smartpasslib"
}
        
Elapsed time: 0.33174s