Home
last modified time | relevance | path

Searched refs:AppIdentityError (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
Dcrypt.py37 class AppIdentityError(Exception): class
408 raise AppIdentityError('Wrong number of segments in token: %s' % jwt)
418 raise AppIdentityError('Can\'t parse token: %s' % json_body)
428 raise AppIdentityError('Invalid token signature: %s' % jwt)
433 raise AppIdentityError('No iat field in token: %s' % json_body)
440 raise AppIdentityError('No exp field in token: %s' % json_body)
442 raise AppIdentityError('exp field too far in future: %s' % json_body)
446 raise AppIdentityError('Token used too early, %d < %d: %s' %
449 raise AppIdentityError('Token used too late, %d > %d: %s' %
456 raise AppIdentityError('No aud field in token: %s' % json_body)
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
Dtest_jwt.py87 except crypt.AppIdentityError as e: