From 2fa62de01d18b4e2a34408e9db2f8dcc6586783e Mon Sep 17 00:00:00 2001 From: Ashwin Ramaswami Date: Sat, 29 Aug 2020 14:22:55 -0400 Subject: [PATCH] Fix typo --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 9aac5c8..32e227f 100644 --- a/README.rst +++ b/README.rst @@ -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 -----