blob: 26f9a12caf596c50c2cdcaabc2b91dc3997c9b16 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_WEB_PACKAGE_SIGNED_EXCHANGE_CERTIFICATE_CHAIN_H_
#define CONTENT_BROWSER_WEB_PACKAGE_SIGNED_EXCHANGE_CERTIFICATE_CHAIN_H_
#include <memory>
#include "base/containers/span.h"
#include "base/memory/scoped_refptr.h"
#include "base/optional.h"
#include "base/strings/string_piece_forward.h"
#include "content/browser/web_package/signed_exchange_consts.h"
#include "content/common/content_export.h"
namespace net {
class X509Certificate;
} // namespace net
namespace content {
class SignedExchangeDevToolsProxy;
// SignedExchangeCertificateChain contains all information in signed exchange
// certificate chain.
// https://wicg.github.io/webpackage/draft-yasskin-http-origin-signed-responses.html#cert-chain-format
class CONTENT_EXPORT SignedExchangeCertificateChain {
public:
static std::unique_ptr<SignedExchangeCertificateChain> Parse(
base::span<const uint8_t> cert_response_body,
SignedExchangeDevToolsProxy* devtools_proxy);
// Regular consumers should use the static Parse() rather than directly
// calling this.
SignedExchangeCertificateChain(scoped_refptr<net::X509Certificate> cert,
const std::string& ocsp,
const std::string& sct);
~SignedExchangeCertificateChain();
const scoped_refptr<net::X509Certificate>& cert() const { return cert_; }
const std::string& ocsp() const { return ocsp_; }
const std::string& sct() const { return sct_; }
private:
scoped_refptr<net::X509Certificate> cert_;
std::string ocsp_;
std::string sct_;
};
} // namespace content
#endif // CONTENT_BROWSER_WEB_PACKAGE_SIGNED_EXCHANGE_CERTIFICATE_CHAIN_H_