#ifndef NET_SSL_TEST_SSL_PRIVATE_KEY_H_
#define NET_SSL_TEST_SSL_PRIVATE_KEY_H_
#include "base/containers/span.h"
#include "base/memory/scoped_refptr.h"
namespace crypto {
class RSAPrivateKey;
}
namespace net {
class SSLPrivateKey;
scoped_refptr<SSLPrivateKey> WrapRSAPrivateKey(
crypto::RSAPrivateKey* rsa_private_key);
scoped_refptr<SSLPrivateKey> CreateFailSigningSSLPrivateKey();
scoped_refptr<SSLPrivateKey> WrapSSLPrivateKeyWithPreferences(
scoped_refptr<SSLPrivateKey> key,
base::span<const uint16_t> prefs);
}
#endif