Skip to main content

A request authentication plugin implementing IETF HTTP Message Signatures

Project description

requests-http-message-signatures: A Requests auth module for HTTP Signature

requests-http-message-signatures is a Requests authentication plugin (requests.auth.AuthBase subclass) implementing the IETF HTTP Signatures draft RFC. It has no required dependencies outside the standard library. If you wish to use algorithms other than HMAC (namely, RSA and ECDSA algorithms specified in the RFC), there is an optional dependency on cryptography.

Installation

$ pip install requests-http-message-signatures

Usage

  import requests
  from requests_http_signature import HTTPSignatureAuth
  
  preshared_key_id = 'squirrel'
  preshared_secret = 'monorail_cat'
  url = 'http://example.com/path'
  
  requests.get(url, auth=HTTPSignatureAuth(key=preshared_secret, key_id=preshared_key_id))

By default, only the Date header is signed (as per the RFC) for body-less requests such as GET. The Date header is set if it is absent. In addition, for requests with bodies (such as POST), the Digest header is set to the SHA256 of the request body and signed (an example of this appears in the RFC). To add other headers to the signature, pass an array of header names in the headers keyword argument.

In addition to signing messages in the client, the class method HTTPSignatureAuth.verify() can be used to verify incoming requests:

  def key_resolver(key_id, algorithm):
      return 'monorail_cat'

  HTTPSignatureAuth.verify(request, key_resolver=key_resolver)

Asymmetric key algorithms (RSA and ECDSA)

For asymmetric key algorithms, you should supply the private key as the key parameter to the HTTPSignatureAuth() constructor as bytes in the PEM format:

  with open('key.pem', 'rb') as fh:
      requests.get(url, auth=HTTPSignatureAuth(algorithm="rsa-sha256", key=fh.read(), key_id=preshared_key_id))

When verifying, the key_resolver() callback should provide the public key as bytes in the PEM format as well.

Links

Bugs

Please report bugs, issues, feature requests, etc. on our issue tracker.

License

Licensed under the terms of the Apache License, Version 2.0.

Project details


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 requests-http-message-signatures-0.3.0rc5.tar.gz.

File metadata

File hashes

Hashes for requests-http-message-signatures-0.3.0rc5.tar.gz
Algorithm Hash digest
SHA256 48d72ba29f1524dbf37de6774112346f11838460b8f58ed9cd6adfeb74f6e363
MD5 280ac1c82c9b671c2e1647b73d4119c0
BLAKE2b-256 ab6a93d7546a2f05b05d89b37bae1f3a52ae53c842483490db8e1ba8302a8de0

See more details on using hashes here.

File details

Details for the file requests_http_message_signatures-0.3.0rc5-py3-none-any.whl.

File metadata

File hashes

Hashes for requests_http_message_signatures-0.3.0rc5-py3-none-any.whl
Algorithm Hash digest
SHA256 9f6f23d79c6ff5f384b8cfce0e3f98268a08971fe471d379c2cf6ea18a2f355f
MD5 2007f8d0698c69de7a9a4848a6272ac0
BLAKE2b-256 167d5d4eaf660647e9368c69e57385a2950ad8772e6843abba5dd73fcd7fde95

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page