معرفی شرکت ها


exile-0.1.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python YubiKey AWS signature library
ویژگی مقدار
سیستم عامل -
نام فایل exile-0.1.1
نام exile
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Andrey Kislyuk
ایمیل نویسنده kislyuk@gmail.com
آدرس صفحه اصلی https://github.com/pyauth/exile
آدرس اینترنتی https://pypi.org/project/exile/
مجوز Apache Software License
Exile: Python YubiKey AWS signature library =========================================== **Exile** stores your AWS access key on your YubiKey device and uses it to sign your AWS API requests, protecting you against credential theft. Installation ------------ :: pip install exile On Linux, install `pcsc-lite <https://salsa.debian.org/rousseau/PCSC>`_ (``apt install pcscd``, ``yum install pcsc-lite``). Exile requires Python 3.6+. Synopsis -------- .. code-block:: python import boto3, botocore.auth from exile import YKOATH, botocore_signers def write_active_aws_key_to_yubikey(): credentials = boto3.Session().get_credentials() key_name = "exile-{}-SigV4".format(credentials.access_key) secret = b"AWS4" + credentials.secret_key.encode() print("Writing YubiKey OATH SigV4 credential", key_name, "for", credentials.access_key) YKOATH().put(key_name, secret, algorithm=YKOATH.Algorithm.SHA256) key_name = "exile-{}-HmacV1".format(credentials.access_key) secret = credentials.secret_key.encode() print("Writing YubiKey OATH HmacV1 credential", key_name, "for", credentials.access_key) YKOATH().put(key_name, secret, algorithm=YKOATH.Algorithm.SHA1) write_active_aws_key_to_yubikey() botocore_signers.install() print("Using YubiKey credential to perform AWS call") print(boto3.client("sts").get_caller_identity()) print("Using YubiKey credential to presign an S3 URL") print(boto3.client("s3").generate_presigned_url(ClientMethod="get_object", Params={"Bucket": "foo", "Key": "bar"})) Storing the secret key on a YubiKey instead of in the home directory (``~/.aws/credentials``) protects it in case the host computer or its filesystem is compromised. The YubiKey acts as an `HSM <https://en.wikipedia.org/wiki/Hardware_security_module>`_, and can optionally be further configured to require user interaction (pressing a button on the key) to sign the request:: YKOATH().put(key_name, secret, algorithm=YKOATH.Algorithm.SHA256, require_touch=True) TOTP ---- Because exile uses the `YubiKey OATH <https://developers.yubico.com/OATH/>`_ protocol, you can also use it to store `TOTP <https://en.wikipedia.org/wiki/Time-based_One-time_Password_algorithm>`_ `2FA <https://en.wikipedia.org/wiki/Multi-factor_authentication>`_ tokens, generate and verify codes:: from exile import TOTP TOTP().save("google", "JBSWY3DPEHPK3PXP") # Or TOTP.save_otpauth_uri("otpauth://...") TOTP().get("google") # Returns a standard 6-digit TOTP code as a string TOTP().verify("260153", label="google", at=datetime.datetime.fromtimestamp(1297553958)) Authors ------- * Andrey Kislyuk Links ----- * `Project home page (GitHub) <https://github.com/pyauth/exile>`_ * `Documentation (Read the Docs) <https://exile.readthedocs.io/en/latest/>`_ * `Package distribution (PyPI) <https://pypi.python.org/pypi/exile>`_ * `Change log <https://github.com/pyauth/exile/blob/master/Changes.rst>`_ Bugs ---- Please report bugs, issues, feature requests, etc. on `GitHub <https://github.com/pyauth/exile/issues>`_. License ------- Licensed under the terms of the `Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_. .. image:: https://img.shields.io/travis/com/pyauth/exile.svg :target: https://travis-ci.com/pyauth/exile .. image:: https://codecov.io/github/pyauth/exile/coverage.svg?branch=master :target: https://codecov.io/github/pyauth/exile?branch=master .. image:: https://img.shields.io/pypi/v/exile.svg :target: https://pypi.python.org/pypi/exile .. image:: https://img.shields.io/pypi/l/exile.svg :target: https://pypi.python.org/pypi/exile .. image:: https://readthedocs.org/projects/exile/badge/?version=latest :target: https://exile.readthedocs.io/


نیازمندی

مقدار نام
- coverage
- flake8
- wheel


نحوه نصب


نصب پکیج whl exile-0.1.1:

    pip install exile-0.1.1.whl


نصب پکیج tar.gz exile-0.1.1:

    pip install exile-0.1.1.tar.gz