Skip to main content

Usecase agnostic implementation of AWS4 signing schema.

Project description

Usecase agnostic implementation of AWS4 Sig v4

uv ruff image image image style tests codecov

This implementation aims to be usecase agnostic. As such it accepts the component pieces of a request rather than a full opinionated request object like httpx.Request.

https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html

Usage

Validation

from aws4 import generate_challenge, validate_challenge

payload = "<extract content from request>"

challenge = generate_challenge(
    method=request.method,
    url=request.url,
    headers=request.headers,
    content=payload.decode("utf-8"),
)

secret_access_key = <load secret key using the challenge.access_key_id>

validate_challenge(challenge, secret_key.secret_access_key)

Signing

An example of an httpx AWS4 request signing. In this example the Authorization header is injected into request.headers

from datetime import datetime, timezone

import aws4


service = "s3"
region = "us-east-1"
access_key_id = "my-access-key-id"
secret_access_key = "my-secret-access-key"

def http_aws4_auth(request: httpx.Request):
    dt = datetime.now(tz=timezone.utc)
    request.headers["x-amz-date"] = aws4.to_amz_date(dt)
    request.headers["host"] = request.url.netloc.decode("utf-8")

    body = request.content.decode("utf-8")
    if body:
        request.headers["Content-Length"] = str(len(body))

    aws4.sign_request(
        service,
        request.method,
        request.url,
        region,
        request.headers,
        body,
        access_key_id,
        secret_access_key,
        dt,
    )

with httpx.Client() as client:
    r = client.request(
        url="http://localhost",
        auth=auth,
    )

Builtin httpx client

Currently there is only a builtin client for httpx, if you think there is a client implementation that would be useful to include, please raise an issue on github.

from datetime import datetime, timezone

import aws4
from aws4.key_pair import KeyPair
from aws4.client import HttpxAWS4Auth


auth = HttpxAWS4Auth(
    KeyPair(
        access_key_id="my-access-key-id",
        secret_access_key="my-secret-access-key",
    )
    "s3",
    "us-east-1",
)

with httpx.Client() as client:
    r = client.request(
        url="http://localhost",
        auth=auth,
    )

Extra credit

Thanks to @ozzzzz and @ivanmisic for work on the initial httpx/fastapi implementations this was extracted from.

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

auth_aws4-0.1.11.tar.gz (56.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

auth_aws4-0.1.11-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file auth_aws4-0.1.11.tar.gz.

File metadata

  • Download URL: auth_aws4-0.1.11.tar.gz
  • Upload date:
  • Size: 56.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for auth_aws4-0.1.11.tar.gz
Algorithm Hash digest
SHA256 f17d4041e5ea0438abdb6d53a3802a99d3ca67e64ee21de4eee404ba48099896
MD5 d97a93f4fbe458feb37cf30a1afb2981
BLAKE2b-256 5ef5f3d16cae1aa6092ae14857a64848d75bbe6eaeda651944bd4240833fae31

See more details on using hashes here.

File details

Details for the file auth_aws4-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: auth_aws4-0.1.11-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for auth_aws4-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 99b443d2336f7350fa7b4a1f621db77b1dc0be2e10117015bc8b821351c05217
MD5 2c984e9fdea4fe5d9c98ee58487e14b9
BLAKE2b-256 80cff84b4028e5ed50c287697064362ed179a3959d28b86566d8d3a57d551fb7

See more details on using hashes here.

Supported by

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