// Copyright 2013 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_SCT_STATUS_FLAGS_H_ #define NET_CERT_SCT_STATUS_FLAGS_H_ #include <stdint.h> #include "net/base/net_export.h" namespace net::ct { // The possible verification statuses for a SignedCertificateTimestamp. // Note: The numeric values are used within histograms and should not change // or be re-assigned. enum SCTVerifyStatus : uint32_t { … }; // Returns true if |status| denotes a valid value in SCTVerifyStatus, which // is all current values in the enum except SCT_STATUS_NONE. NET_EXPORT bool IsValidSCTStatus(uint32_t status); } // namespace net::ct #endif // NET_CERT_SCT_STATUS_FLAGS_H_