Home
last modified time | relevance | path

Searched refs:RsaSigner (Results 1 – 4 of 4) sorted by relevance

/external/python/oauth2client/tests/
Dtest__pure_python_crypt.py53 signer = crypt.RsaSigner.from_string(self._load_private_key_bytes())
62 signer = crypt.RsaSigner.from_string(self._load_private_key_bytes())
138 signer = crypt.RsaSigner.from_string(key_bytes)
139 self.assertIsInstance(signer, crypt.RsaSigner)
144 signer = crypt.RsaSigner.from_string(key_bytes)
145 self.assertIsInstance(signer, crypt.RsaSigner)
150 signer = crypt.RsaSigner.from_string(key_bytes)
151 self.assertIsInstance(signer, crypt.RsaSigner)
164 crypt.RsaSigner.from_string(key_bytes)
171 signer = crypt.RsaSigner.from_string(key_bytes)
[all …]
Dtest_service_account.py208 @mock.patch('oauth2client.crypt.Signer', new=crypt.RsaSigner)
/external/python/oauth2client/oauth2client/
Dcrypt.py26 RsaSigner = _pure_python_crypt.RsaSigner variable
70 Signer = RsaSigner
D_pure_python_crypt.py128 class RsaSigner(object): class