Searched refs:urlsafe_b64decode (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_base64.py | 136 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/ |
D | challenges.py | 132 key = pyu2f.model.RegisteredKey(bytearray(base64.urlsafe_b64decode(kh))) 134 challenge = base64.urlsafe_b64decode(challenge)
|
/external/python/cryptography/src/cryptography/ |
D | fernet.py | 34 key = base64.urlsafe_b64decode(key) 96 data = base64.urlsafe_b64decode(token)
|
/external/autotest/utils/frozen_chromite/third_party/oauth2client/ |
D | _helpers.py | 103 return base64.urlsafe_b64decode(padded)
|
D | xsrfutil.py | 87 decoded = base64.urlsafe_b64decode(token)
|
/external/python/oauth2client/oauth2client/ |
D | _helpers.py | 105 return base64.urlsafe_b64decode(padded)
|
/external/python/cpython3/Lib/test/ |
D | test_base64.py | 224 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/ |
D | xsrfutil.py | 86 decoded = base64.urlsafe_b64decode(token)
|
/external/python/google-auth-library-python/google/auth/ |
D | _helpers.py | 219 return base64.urlsafe_b64decode(padded)
|
/external/python/google-auth-library-python/tests/crypt/ |
D | test_es256.py | 80 wrong_signature = base64.urlsafe_b64decode(
|
/external/python/cpython2/Lib/ |
D | base64.py | 109 def urlsafe_b64decode(s): function
|
/external/python/cpython2/Doc/library/ |
D | base64.rst | 72 .. function:: urlsafe_b64decode(s)
|
/external/python/cpython3/Lib/ |
D | base64.py | 120 def urlsafe_b64decode(s): function
|
/external/python/apitools/apitools/base/py/ |
D | encoding_helper.py | 505 result = base64.urlsafe_b64decode(str(value))
|
/external/protobuf/python/google/protobuf/ |
D | json_format.py | 783 return base64.urlsafe_b64decode(padded_value)
|
/external/cronet/third_party/protobuf/python/google/protobuf/ |
D | json_format.py | 783 return base64.urlsafe_b64decode(padded_value)
|
/external/python/cpython3/Doc/library/ |
D | base64.rst | 103 .. function:: urlsafe_b64decode(s)
|
/external/openthread/tools/harness-thci/ |
D | OpenThread.py | 476 jsonStr = base64.urlsafe_b64decode(Param9)
|