forked from wolfSSL/wolfssl
move check_priv for libdrizzle
This commit is contained in:
18
src/ssl.c
18
src/ssl.c
@ -1508,6 +1508,15 @@ int CyaSSL_CertManagerDisableCRL(CYASSL_CERT_MANAGER* cm)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int CyaSSL_CTX_check_private_key(CYASSL_CTX* ctx)
|
||||||
|
{
|
||||||
|
/* TODO: check private against public for RSA match */
|
||||||
|
(void)ctx;
|
||||||
|
CYASSL_ENTER("SSL_CTX_check_private_key");
|
||||||
|
return SSL_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifdef HAVE_CRL
|
#ifdef HAVE_CRL
|
||||||
|
|
||||||
|
|
||||||
@ -3320,15 +3329,6 @@ int CyaSSL_set_compression(CYASSL* ssl)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int CyaSSL_CTX_check_private_key(CYASSL_CTX* ctx)
|
|
||||||
{
|
|
||||||
/* TODO: check private against public for RSA match */
|
|
||||||
(void)ctx;
|
|
||||||
CYASSL_ENTER("SSL_CTX_check_private_key");
|
|
||||||
return SSL_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void CyaSSL_set_bio(CYASSL* ssl, CYASSL_BIO* rd, CYASSL_BIO* wr)
|
void CyaSSL_set_bio(CYASSL* ssl, CYASSL_BIO* rd, CYASSL_BIO* wr)
|
||||||
{
|
{
|
||||||
CYASSL_ENTER("SSL_set_bio");
|
CYASSL_ENTER("SSL_set_bio");
|
||||||
|
Reference in New Issue
Block a user