| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef NET_CERT_KNOWN_ROOTS_WIN_H_ |
| 6 #define NET_CERT_KNOWN_ROOTS_WIN_H_ |
| 7 |
| 8 #include "crypto/wincrypt_shim.h" |
| 9 |
| 10 namespace net { |
| 11 |
| 12 // IsKnownRoot returns true if the given certificate is one that we believe |
| 13 // is a standard (as opposed to user-installed) root. |
| 14 bool IsKnownRoot(PCCERT_CONTEXT cert); |
| 15 |
| 16 } // namespace net |
| 17 |
| 18 #endif // NET_CERT_KNOWN_ROOTS_WIN_H_ |
| OLD | NEW |