#ifndef NET_SSL_SSL_PLATFORM_KEY_NSS_H_
#define NET_SSL_SSL_PLATFORM_KEY_NSS_H_
#include "base/memory/scoped_refptr.h"
#include "net/base/net_export.h"
CERTCertificate;
namespace crypto {
class CryptoModuleBlockingPasswordDelegate;
}
namespace net {
class SSLPrivateKey;
class X509Certificate;
NET_EXPORT scoped_refptr<SSLPrivateKey> FetchClientCertPrivateKey(
const X509Certificate* certificate,
CERTCertificate* cert_certificate,
scoped_refptr<crypto::CryptoModuleBlockingPasswordDelegate>
password_delegate);
}
#endif