Skip to content

Commit

Permalink
fix: Serialize signer keys on __getstate__ for pickling (#1394)
Browse files Browse the repository at this point in the history
Fixes #1383
  • Loading branch information
andrewsg committed Oct 5, 2023
1 parent 734da1b commit 8b783b9
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 0 deletions.
15 changes: 15 additions & 0 deletions google/auth/crypt/_cryptography_rsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,18 @@ def from_string(cls, key, key_id=None):
key, password=None, backend=_BACKEND
)
return cls(private_key, key_id=key_id)

def __getstate__(self):
"""Pickle helper that serializes the _key attribute."""
state = self.__dict__.copy()
state["_key"] = self._key.private_bytes(
encoding=serialization.Encoding.PEM,
format=serialization.PrivateFormat.PKCS8,
encryption_algorithm=serialization.NoEncryption(),
)
return state

def __setstate__(self, state):
"""Pickle helper that deserializes the _key attribute."""
state["_key"] = serialization.load_pem_private_key(state["_key"], None)
self.__dict__.update(state)
15 changes: 15 additions & 0 deletions google/auth/crypt/es256.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,18 @@ def from_string(cls, key, key_id=None):
key, password=None, backend=_BACKEND
)
return cls(private_key, key_id=key_id)

def __getstate__(self):
"""Pickle helper that serializes the _key attribute."""
state = self.__dict__.copy()
state["_key"] = self._key.private_bytes(
encoding=serialization.Encoding.PEM,
format=serialization.PrivateFormat.PKCS8,
encryption_algorithm=serialization.NoEncryption(),
)
return state

def __setstate__(self, state):
"""Pickle helper that deserializes the _key attribute."""
state["_key"] = serialization.load_pem_private_key(state["_key"], None)
self.__dict__.update(state)
Binary file modified system_tests/secrets.tar.enc
Binary file not shown.
15 changes: 15 additions & 0 deletions tests/crypt/test__cryptography_rsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import json
import os
import pickle

from cryptography.hazmat.primitives.asymmetric import rsa
import pytest # type: ignore
Expand Down Expand Up @@ -159,3 +160,17 @@ def test_from_service_account_file(self):

assert signer.key_id == SERVICE_ACCOUNT_INFO[base._JSON_FILE_PRIVATE_KEY_ID]
assert isinstance(signer._key, rsa.RSAPrivateKey)

def test_pickle(self):
signer = _cryptography_rsa.RSASigner.from_service_account_file(
SERVICE_ACCOUNT_JSON_FILE
)

assert signer.key_id == SERVICE_ACCOUNT_INFO[base._JSON_FILE_PRIVATE_KEY_ID]
assert isinstance(signer._key, rsa.RSAPrivateKey)

pickled_signer = pickle.dumps(signer)
signer = pickle.loads(pickled_signer)

assert signer.key_id == SERVICE_ACCOUNT_INFO[base._JSON_FILE_PRIVATE_KEY_ID]
assert isinstance(signer._key, rsa.RSAPrivateKey)
13 changes: 13 additions & 0 deletions tests/crypt/test_es256.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import base64
import json
import os
import pickle

from cryptography.hazmat.primitives.asymmetric import ec
import pytest # type: ignore
Expand Down Expand Up @@ -141,3 +142,15 @@ def test_from_service_account_file(self):

assert signer.key_id == SERVICE_ACCOUNT_INFO[base._JSON_FILE_PRIVATE_KEY_ID]
assert isinstance(signer._key, ec.EllipticCurvePrivateKey)

def test_pickle(self):
signer = es256.ES256Signer.from_service_account_file(SERVICE_ACCOUNT_JSON_FILE)

assert signer.key_id == SERVICE_ACCOUNT_INFO[base._JSON_FILE_PRIVATE_KEY_ID]
assert isinstance(signer._key, ec.EllipticCurvePrivateKey)

pickled_signer = pickle.dumps(signer)
signer = pickle.loads(pickled_signer)

assert signer.key_id == SERVICE_ACCOUNT_INFO[base._JSON_FILE_PRIVATE_KEY_ID]
assert isinstance(signer._key, ec.EllipticCurvePrivateKey)

0 comments on commit 8b783b9

Please sign in to comment.