// Copyright 2016 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_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSET_H_ #define NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSET_H_ #include <string> #include <vector> namespace net::transport_security_state { // A Pinset represents the data a website would send in a HPKP header. A pinset // is given a name so that multiple entries in the preload list can reference // the same pinset. class Pinset { … }; } // namespace net::transport_security_state #endif // NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSET_H_