// 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. #include "net/cert/ct_sct_to_string.h" #include "base/logging.h" #include "base/notreached.h" namespace net::ct { const std::string HashAlgorithmToString( DigitallySigned::HashAlgorithm hashAlgorithm) { … } const std::string SignatureAlgorithmToString( DigitallySigned::SignatureAlgorithm signatureAlgorithm) { … } const std::string OriginToString(SignedCertificateTimestamp::Origin origin) { … } const std::string StatusToString(SCTVerifyStatus status) { … } } // namespace net::ct