Home
last modified time | relevance | path

Searched refs:PyCryptoSigner (Results 1 – 5 of 5) sorted by relevance

/external/python/oauth2client/oauth2client/
Dcrypt.py56 PyCryptoSigner = _pycrypto_crypt.PyCryptoSigner variable
60 PyCryptoSigner = None variable
66 elif PyCryptoSigner: # pragma: NO COVER
67 Signer = PyCryptoSigner
D_pycrypto_crypt.py78 class PyCryptoSigner(object): class
124 return PyCryptoSigner(pkey)
/external/python/oauth2client/tests/
Dtest__pycrypto_crypt.py40 signer = crypt.PyCryptoSigner.from_string(
73 crypt.PyCryptoSigner.from_string(key_bytes)
Dtest_jwt.py223 self.signer = crypt.PyCryptoSigner
322 crypt.Signer = crypt.PyCryptoSigner
Dtest_service_account.py204 @mock.patch('oauth2client.crypt.Signer', new=crypt.PyCryptoSigner)