Revert "open private key as a bytestring"

This reverts commit 07e73a534e.
This commit is contained in:
jesopo 2019-09-15 11:47:16 +01:00
parent 07e73a534e
commit 97afbc1e40

View file

@ -8,7 +8,7 @@ SIGNATURE_FORMAT = (
def _private_key(key_filename: str) -> rsa.RSAPrivateKey:
with open(key_filename, "rb") as key_file:
with open(key_filename) as key_file:
return serialization.load_pem_private_key(
key_file.read(), password=None, backend=default_backend())