// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_NETWORK_TRUST_TOKENS_BORINGSSL_TRUST_TOKEN_TEST_UTILS_H_ #define SERVICES_NETWORK_TRUST_TOKENS_BORINGSSL_TRUST_TOKEN_TEST_UTILS_H_ #include <cstdint> #include <optional> #include <string> #include <vector> #include "third_party/boringssl/src/include/openssl/base.h" #include "third_party/boringssl/src/include/openssl/trust_token.h" namespace network { // This class implements a test Private State Token issuer. // https://github.com/WICG/trust-token-api/blob/main/ISSUER_PROTOCOL.md class TestTrustTokenIssuer { … }; } // namespace network #endif // SERVICES_NETWORK_TRUST_TOKENS_BORINGSSL_TRUST_TOKEN_TEST_UTILS_H_