// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/cert/symantec_certs.h" namespace net { // See net/data/ssl/symantec/README.md const SHA256HashValue kSymantecRoots[] = …; const size_t kSymantecRootsLength = …; const SHA256HashValue kSymantecExceptions[] = …; const size_t kSymantecExceptionsLength = …; const SHA256HashValue kSymantecManagedCAs[] = …; const size_t kSymantecManagedCAsLength = …; bool IsLegacySymantecCert(const HashValueVector& public_key_hashes) { … } } // namespace net