#ifndef NET_CERT_CT_SCT_TO_STRING_H_
#define NET_CERT_CT_SCT_TO_STRING_H_
#include <string>
#include "net/base/net_export.h"
#include "net/cert/sct_status_flags.h"
#include "net/cert/signed_certificate_timestamp.h"
namespace net::ct {
NET_EXPORT const std::string HashAlgorithmToString(
DigitallySigned::HashAlgorithm hashAlgorithm);
NET_EXPORT const std::string OriginToString(
SignedCertificateTimestamp::Origin origin);
NET_EXPORT const std::string SignatureAlgorithmToString(
DigitallySigned::SignatureAlgorithm signatureAlgorithm);
NET_EXPORT const std::string StatusToString(SCTVerifyStatus status);
}
#endif