Helpful error message in P12 factory in absence of pyOpenSSL.

Fixes #417.
This commit is contained in:
Danny Hermes
2016-02-19 16:37:29 -08:00
parent 85df3253bf
commit b605997bea
3 changed files with 20 additions and 5 deletions

View File

@@ -120,9 +120,7 @@ class PyCryptoSigner(object):
pkey = RSA.importKey(parsed_pem_key)
else:
raise NotImplementedError(
'PKCS12 format is not supported by the PyCrypto library. '
'Try converting to a "PEM" '
'(openssl pkcs12 -in xxxxx.p12 -nodes -nocerts > '
'privatekey.pem) '
'or using PyOpenSSL if native code is an option.')
'No key in PEM format was detected. This implementation '
'can only use the PyCrypto library for keys in PEM '
'format.')
return PyCryptoSigner(pkey)

View File

@@ -240,6 +240,8 @@ class ServiceAccountCredentials(AssertionCredentials):
"""
if private_key_password is None:
private_key_password = _PASSWORD_DEFAULT
if crypt.Signer is not crypt.OpenSSLSigner:
raise NotImplementedError(_PKCS12_ERROR)
signer = crypt.Signer.from_string(private_key_pkcs12,
private_key_password)
credentials = cls(service_account_email, signer, scopes=scopes)

View File

@@ -165,6 +165,21 @@ class ServiceAccountCredentialsTests(unittest2.TestCase):
self.assertEqual(creds._private_key_password, private_key_password)
self.assertEqual(creds._scopes, ' '.join(scopes))
def _p12_not_implemented_helper(self):
service_account_email = 'name@email.com'
filename = data_filename('privatekey.p12')
with self.assertRaises(NotImplementedError):
ServiceAccountCredentials.from_p12_keyfile(
service_account_email, filename)
@mock.patch('oauth2client.crypt.Signer', new=crypt.PyCryptoSigner)
def test_from_p12_keyfile_with_pycrypto(self):
self._p12_not_implemented_helper()
@mock.patch('oauth2client.crypt.Signer', new=crypt.RsaSigner)
def test_from_p12_keyfile_with_rsa(self):
self._p12_not_implemented_helper()
def test_from_p12_keyfile_defaults(self):
self._from_p12_keyfile_helper()