a signing key extension for flask
Project description
Flask-Signing
a signing key extension for flask
About
The Flask-Signing library is a useful tool for Flask applications that require secure and robust management of signing keys. Do you need to generate single-use tokens for one-time actions like email verification or password reset? Flask-Signing can handle that. Are you looking for a simple method for managing API keys? Look no further.
Installation
First, install the flask_signing package. You can do this with pip:
pip install flask_signing
Usage
After you've installed the package, you can use it in your Flask application. Here's an example of how you might do this:
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_signing import Signatures
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite://' # Use your actual database URI
app.secret_key = "Your_Key_Here"
with app.app_context():
signatures = Signatures(app, byte_len=24)
@app.route('/sign')
def sign():
key = signatures.write_key_to_database(scope='test', expiration=1, active=True, email='test@example.com')
return f'Key generated: {key}'
@app.route('/verify/<key>')
def verify(key):
valid = signatures.verify_signature(signature=key, scope='example')
return f'Key valid: {valid}'
@app.route('/expire/<key>')
def expire(key):
expired = signatures.expire_key(key)
return f'Key expired: {expired}'
@app.route('/all')
def all():
all = signatures.query_all()
return f'Response: {all}'
In this example, a new signing key is generated and written to the database when you visit the /sign route, and the key is displayed on the page. Then, when you visit the /verify/ route (replace with the actual key), the validity of the key is checked and displayed. You can expire a key using the /expire/ route, and view all records with the /all route.
Please note that this is a very basic example and your actual use of the flask_signing package may be more complex depending on your needs. It's important to secure your signing keys and handle them appropriately according to your application's security requirements.
Developers
Contributions are welcome! You can read the developer docs at https://signebedi.github.io/Flask-Signing. If you're interested, review (or add to) the feature ideas at https://github.com/signebedi/Flask-Signing/issues.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flask_signing-0.4.1.tar.gz
.
File metadata
- Download URL: flask_signing-0.4.1.tar.gz
- Upload date:
- Size: 151.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d28bc69d80a91253868bcc8d6542cd243b66c3bae79cfe0bb56b141a444684c |
|
MD5 | 6b4c4457052edd86c1b9099a414e906d |
|
BLAKE2b-256 | 54595c0ea6a5acd22d1f9dfa0fca4bd98d48a996a5db256c70ba99b36e5e402e |
File details
Details for the file flask_signing-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: flask_signing-0.4.1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ed975eff02c4594c7c3441a66fcf0bd7a6feec3c206446dc9f7132c90424df6 |
|
MD5 | b50469bf0e7c3229a4b6bb91800c4335 |
|
BLAKE2b-256 | 24a41ef371f22541a5a856bef4a446c0179f7e841a77708a0b0ca76bb3d58c50 |