#ifndef CHROME_COMMON_NET_X509_CERTIFICATE_MODEL_NSS_H_
#define CHROME_COMMON_NET_X509_CERTIFICATE_MODEL_NSS_H_
#include <stddef.h>
#include <string>
#include "chrome/common/net/x509_certificate_model.h"
#include "net/cert/cert_type.h"
CERTCertificate;
namespace x509_certificate_model {
std::string GetRawNickname(CERTCertificate* cert_handle);
std::string GetCertNameOrNickname(CERTCertificate* cert_handle);
net::CertType GetType(CERTCertificate* cert_handle);
std::string GetSubjectOrgName(CERTCertificate* cert_handle,
const std::string& alternative_text);
std::string GetIssuerDisplayName(CERTCertificate* cert_handle);
std::string GetSubjectDisplayName(CERTCertificate* cert_handle);
std::string GetTitle(CERTCertificate* cert_handle);
}
#endif