Home
last modified time | relevance | path

Searched refs:urlsafe_b64decode (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_base64.py136 eq(base64.urlsafe_b64decode('01a-b_cd'), '\xd3V\xbeo\xf7\x1d')
138 eq(base64.urlsafe_b64decode(bytearray('01a-b_cd')), '\xd3V\xbeo\xf7\x1d')
157 self.assertEqual(base64.urlsafe_b64decode(bstr), res)
162 self.assertEqual(base64.urlsafe_b64decode(b'++--//__'), res)
/external/python/google-auth-library-python/google/oauth2/
Dchallenges.py132 key = pyu2f.model.RegisteredKey(bytearray(base64.urlsafe_b64decode(kh)))
134 challenge = base64.urlsafe_b64decode(challenge)
/external/python/cryptography/src/cryptography/
Dfernet.py34 key = base64.urlsafe_b64decode(key)
96 data = base64.urlsafe_b64decode(token)
/external/autotest/utils/frozen_chromite/third_party/oauth2client/
D_helpers.py103 return base64.urlsafe_b64decode(padded)
Dxsrfutil.py87 decoded = base64.urlsafe_b64decode(token)
/external/python/oauth2client/oauth2client/
D_helpers.py105 return base64.urlsafe_b64decode(padded)
/external/python/cpython3/Lib/test/
Dtest_base64.py224 eq(base64.urlsafe_b64decode(data), res)
225 eq(base64.urlsafe_b64decode(data.decode('ascii')), res)
227 self.check_other_types(base64.urlsafe_b64decode, b'01a-b_cd',
229 self.check_decode_type_errors(base64.urlsafe_b64decode)
250 base64.urlsafe_b64decode,
265 self.assertEqual(base64.urlsafe_b64decode(b'++--//__'), res)
706 base64.urlsafe_b64decode,
/external/python/oauth2client/oauth2client/contrib/
Dxsrfutil.py86 decoded = base64.urlsafe_b64decode(token)
/external/python/google-auth-library-python/google/auth/
D_helpers.py219 return base64.urlsafe_b64decode(padded)
/external/python/google-auth-library-python/tests/crypt/
Dtest_es256.py80 wrong_signature = base64.urlsafe_b64decode(
/external/python/cpython2/Lib/
Dbase64.py109 def urlsafe_b64decode(s): function
/external/python/cpython2/Doc/library/
Dbase64.rst72 .. function:: urlsafe_b64decode(s)
/external/python/cpython3/Lib/
Dbase64.py120 def urlsafe_b64decode(s): function
/external/python/apitools/apitools/base/py/
Dencoding_helper.py505 result = base64.urlsafe_b64decode(str(value))
/external/protobuf/python/google/protobuf/
Djson_format.py783 return base64.urlsafe_b64decode(padded_value)
/external/cronet/third_party/protobuf/python/google/protobuf/
Djson_format.py783 return base64.urlsafe_b64decode(padded_value)
/external/python/cpython3/Doc/library/
Dbase64.rst103 .. function:: urlsafe_b64decode(s)
/external/openthread/tools/harness-thci/
DOpenThread.py476 jsonStr = base64.urlsafe_b64decode(Param9)