// 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_PINSETS_H_ #define NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSETS_H_ #include <map> #include <memory> #include <string> #include <string_view> #include "net/tools/transport_security_state_generator/cert_util.h" #include "net/tools/transport_security_state_generator/pinset.h" #include "net/tools/transport_security_state_generator/spki_hash.h" namespace net::transport_security_state { // Contains SPKIHashes and their names. The names are used to reference // the hashes from Pinset's. SPKIHashMap; PinsetMap; class Pinsets { … }; } // namespace net::transport_security_state #endif // NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSETS_H_