flask-hmac:为Flask路由提供HMAC签名的轻松集成

时间:2024-05-30 17:20:34
【文件属性】:

文件名称:flask-hmac:为Flask路由提供HMAC签名的轻松集成

文件大小:11KB

文件格式:ZIP

更新时间:2024-05-30 17:20:34

Python

烧瓶-HMAC 此模块提供对Flask路由的身份验证。 预期的用例是用于REST API。 它仅根据客户必须拥有密钥的副本这一事实而设计,以检查客户端是否有权访问Flask应用程序中的特定路由。 用法 服务器 app = Flask ( __name__ ) app . config [ 'HMAC_KEY' ] = 's3cr3tk3y' # define the secret key in an app config @ app . route ( "/no_auth_view" ) def no_auth_view (): return "no_auth_view" @ app . route ( "/hmac_auth_view" ) @ hmac . auth () # decorate view def hmac_auth_view (): return


【文件预览】:
flask-hmac-develop
----MANIFEST.in(101B)
----circle.yml(433B)
----README.rst(3KB)
----flask_hmac()
--------exceptions.py(191B)
--------__init__.py(51B)
--------flask_hmac.py(5KB)
----.pypirc.template(87B)
----CHANGELOG.rst(522B)
----Dockerfile(437B)
----VERSION.txt(4B)
----tox.ini(278B)
----pytest.ini(318B)
----.isort.cfg(246B)
----LICENSE(1KB)
----setup.py(2KB)
----tests()
--------test_hmac.py(7KB)
--------__init__.py(0B)
----.gitignore(744B)

网友评论