An implementation of the IETF HTTP Message Signatures draft standard
Project description
http-message-signatures is an implementation of the IETF HTTP Message Signatures draft standard in Python.
Installation
pip3 install http-message-signatures
Synopsis
from http_message_signatures import HTTPMessageSigner, HTTPMessageVerifier, HTTPSignatureKeyResolver, algorithms
import requests, base64, hashlib, http_sfv
class MyHTTPSignatureKeyResolver(HTTPSignatureKeyResolver):
keys = {"my-key": b"top-secret-key"}
def resolve_public_key(self, key_id: str):
return self.keys[key_id]
def resolve_private_key(self, key_id: str):
return self.keys[key_id]
request = requests.Request('POST', 'https://example.com/foo?param=Value&Pet=dog', json={"hello": "world"})
request = request.prepare()
request.headers["Content-Digest"] = str(http_sfv.Dictionary({"sha-256": hashlib.sha256(request.body).digest()}))
signer = HTTPMessageSigner(signature_algorithm=algorithms.HMAC_SHA256, key_resolver=MyHTTPSignatureKeyResolver())
signer.sign(request, key_id="my-key", covered_component_ids=("@method", "@authority", "@target-uri", "content-digest"))
verifier = HTTPMessageVerifier(signature_algorithm=algorithms.HMAC_SHA256, key_resolver=MyHTTPSignatureKeyResolver())
verifier.verify(request)
Note that verifying the body content-digest is outside the scope of this package’s functionality, so it remains the caller’s responsibility. The requests-http-signature library builds upon this package to provide integrated signing and validation of the request body.
Links
Bugs
Please report bugs, issues, feature requests, etc. on GitHub.
License
Licensed under the terms of the Apache License, Version 2.0.
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 http-message-signatures-0.4.1.tar.gz
.
File metadata
- Download URL: http-message-signatures-0.4.1.tar.gz
- Upload date:
- Size: 23.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbfd3ef49b337e784c258454f7a163328574b7b9149b0bfbe193097f9d159fb9 |
|
MD5 | d6b7aa6409387da2f4d71b0b8adafefe |
|
BLAKE2b-256 | d592e77b5a0950cca1d595e33b0547c23d1f472d9d1378c2af75bbf45edc561a |
File details
Details for the file http_message_signatures-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: http_message_signatures-0.4.1-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb3ce8f2c00d13652cf441f85479f616f74deafbdf6c92e1577dc2cf9960b313 |
|
MD5 | 07060593e02a0825d9ae904e5fc332ff |
|
BLAKE2b-256 | babab2db10c672cbd24fa3b843a205980a2223d4e0a197cf80acc63c43f67d65 |