/aosp_15_r20/external/tink/cc/jwt/ |
H A D | raw_jwt_test.cc | 37 TEST(RawJwt, GetTypeHeaderIssuerSubjectJwtIdOK) { in TEST() argument 57 TEST(RawJwt, TimestampsOK) { in TEST() argument 78 TEST(RawJwt, ExpWithMillisAlwaysRoundDown) { in TEST() argument 88 TEST(RawJwt, NbfWithMillisAlwaysRoundDown) { in TEST() argument 100 TEST(RawJwt, IatWithMillisAlwaysRoundDown) { in TEST() argument 112 TEST(RawJwt, LargeExpirationWorks) { in TEST() argument 132 TEST(RawJwt, TooLargeTimestampsFail) { in TEST() argument 141 TEST(RawJwt, NegativeTimestampsFail) { in TEST() argument 150 TEST(RawJwt, SetExpirationAndWithoutExpirationFail) { in TEST() argument 156 TEST(RawJwt, NeitherSetExpirationNorWithoutExpirationFail) { in TEST() argument [all …]
|
H A D | raw_jwt.cc | 191 RawJwt::RawJwt(absl::optional<std::string> type_header, in RawJwt() function in crypto::tink::RawJwt
|
/aosp_15_r20/external/tink/cc/jwt/internal/ |
H A D | jwt_format_test.cc | 331 TEST(RawJwt, FromJson) { in TEST() argument 345 TEST(RawJwt, FromJsonWithTypeHeader) { in TEST() argument 354 TEST(RawJwt, FromJsonExpExpiration) { in TEST() argument 363 TEST(RawJwt, FromJsonExpirationTooLarge) { in TEST() argument 369 TEST(RawJwt, FromJsonNegativeExpirationAreInvalid) { in TEST() argument 375 TEST(RawJwt, FromJsonPreservesStringAud) { in TEST() argument 387 TEST(RawJwt, FromJsonPreservesListAud) { in TEST() argument 399 TEST(RawJwt, FromJsonWithBadRegisteredTypes) { in TEST() argument
|
/aosp_15_r20/external/tink/python/tink/jwt/ |
H A D | _jwt_public_key_sign.py | 29 def sign_and_encode(self, raw_jwt: _raw_jwt.RawJwt) -> str: 51 def sign_and_encode_with_kid(self, token: _raw_jwt.RawJwt,
|
H A D | _jwt_mac.py | 32 def compute_mac_and_encode(self, token: _raw_jwt.RawJwt) -> str: 83 def compute_mac_and_encode_with_kid(self, token: _raw_jwt.RawJwt,
|
H A D | _verified_jwt.py | 40 def _create(cls, raw_jwt: _raw_jwt.RawJwt): 45 def __init__(self, raw_jwt: _raw_jwt.RawJwt) -> None:
|
H A D | _jwt_mac_wrapper.py | 34 def compute_mac_and_encode(self, raw_jwt: _raw_jwt.RawJwt) -> str:
|
H A D | _jwt_signature_wrappers.py | 35 def sign_and_encode(self, raw_jwt: _raw_jwt.RawJwt) -> str:
|
H A D | _jwt_hmac_key_manager.py | 56 def compute_mac_and_encode_with_kid(self, raw_jwt: _raw_jwt.RawJwt,
|
H A D | __init__.py | 34 RawJwt = _raw_jwt.RawJwt variable
|
H A D | _jwt_format.py | 199 raw_jwt: _raw_jwt.RawJwt) -> bytes:
|
H A D | _jwt_validator.py | 145 def validate(validator: JwtValidator, raw_jwt: _raw_jwt.RawJwt) -> None:
|
H A D | _jwt_signature_key_manager.py | 74 def sign_and_encode_with_kid(self, raw_jwt: _raw_jwt.RawJwt,
|
H A D | _raw_jwt.py | 48 class RawJwt: class
|
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/jwt/ |
H A D | RawJwt.java | 45 public final class RawJwt { class 54 private RawJwt(Builder builder) { in RawJwt() method in RawJwt 67 private RawJwt(Optional<String> typeHeader, String jsonPayload) throws JwtInvalidException { in RawJwt() method in RawJwt
|
/aosp_15_r20/external/tink/testing/cross_language/util/ |
H A D | _primitives.py | 505 def raw_jwt_to_proto(raw_jwt: jwt.RawJwt) -> testing_api_pb2.JwtToken: 647 def compute_mac_and_encode(self, raw_jwt: jwt.RawJwt) -> str: 696 def sign_and_encode(self, raw_jwt: jwt.RawJwt) -> str:
|