Fix typo (#21)

pull/24/head
Ashwin Ramaswami 2020-08-29 15:46:13 -04:00 committed by GitHub
parent c0c8fd7255
commit f2ca109baa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ 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:
When verifying, the ``key_resolver()`` callback should provide the public key as bytes in the PEM format as well.
Links
-----