#ifndef NET_SSL_SSL_PLATFORM_KEY_MAC_H_
#define NET_SSL_SSL_PLATFORM_KEY_MAC_H_
#include <Security/SecBase.h>
#include "base/memory/scoped_refptr.h"
#include "crypto/unexportable_key.h"
#include "net/base/net_export.h"
namespace net {
class SSLPrivateKey;
class X509Certificate;
NET_EXPORT scoped_refptr<SSLPrivateKey> CreateSSLPrivateKeyForSecKey(
const X509Certificate* certificate,
SecKeyRef key);
NET_EXPORT scoped_refptr<SSLPrivateKey> WrapUnexportableKey(
const crypto::UnexportableSigningKey& unexportable_key);
}
#endif