Home
last modified time | relevance | path

Searched refs:GetTypeHeader (Results 1 – 17 of 17) sorted by relevance

/external/tink/cc/jwt/internal/
Djwt_mac_impl_test.cc90 EXPECT_THAT(raw_jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
104 EXPECT_THAT(verified_jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
130 EXPECT_THAT(raw_jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
144 EXPECT_THAT(verified_jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
Djwt_mac_impl.cc37 util::StatusOr<std::string> type = token.GetTypeHeader(); in ComputeMacAndEncodeWithKid()
114 RawJwtParser::FromJson(GetTypeHeader(*header), json_payload); in VerifyMacAndDecodeWithKid()
Djwt_public_key_sign_impl.cc34 util::StatusOr<std::string> type = token.GetTypeHeader(); in SignAndEncodeWithKid()
Djwt_public_key_sign_verify_impl_test.cc105 EXPECT_THAT(verified_jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST_F()
154 EXPECT_THAT(verified_jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST_F()
Djwt_format.h47 absl::optional<std::string> GetTypeHeader(
Djwt_public_key_verify_impl.cc79 GetTypeHeader(*header), json_payload); in VerifyAndDecodeWithKid()
Djwt_format.cc165 absl::optional<std::string> GetTypeHeader( in GetTypeHeader() function
Djwt_format_test.cc150 EXPECT_THAT(GetTypeHeader(*header), Eq("JWT")); in TEST()
350 EXPECT_THAT(jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
/external/tink/cc/jwt/
Dverified_jwt.cc38 util::StatusOr<std::string> VerifiedJwt::GetTypeHeader() const { in GetTypeHeader() function in crypto::tink::VerifiedJwt
39 return raw_jwt_.GetTypeHeader(); in GetTypeHeader()
Dverified_jwt.h60 util::StatusOr<std::string> GetTypeHeader() const;
Dverified_jwt_test.cc106 EXPECT_THAT(jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
295 EXPECT_FALSE(jwt->GetTypeHeader().ok()); in TEST()
Draw_jwt.h53 util::StatusOr<std::string> GetTypeHeader() const;
Djwt_validator.cc97 util::StatusOr<std::string> type_header = raw_jwt.GetTypeHeader(); in ValidateTypeHeader()
Draw_jwt_test.cc48 EXPECT_THAT(jwt->GetTypeHeader(), IsOkAndHolds("typeHeader")); in TEST()
438 EXPECT_FALSE(jwt->GetTypeHeader().ok()); in TEST()
Draw_jwt.cc199 util::StatusOr<std::string> RawJwt::GetTypeHeader() const { in GetTypeHeader() function in crypto::tink::RawJwt
/external/tink/testing/go/
Djwt_service.go174 TypeHeader: refString(t.GetTypeHeader()),
/external/tink/testing/cc/
Djwt_impl.cc122 verified_jwt.GetTypeHeader().value()); in VerifiedJwtToProto()