// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_CERT_X509_CERT_TYPES_H_ #define NET_CERT_X509_CERT_TYPES_H_ #include <string> #include <vector> #include "net/base/net_export.h" #include "third_party/boringssl/src/pki/input.h" namespace net { // CertPrincipal represents the issuer or subject field of an X.509 certificate. struct NET_EXPORT CertPrincipal { … }; } // namespace net #endif // NET_CERT_X509_CERT_TYPES_H_