From 5fe5fe9e6264d45154a7ece8c85fa70173429ff8 Mon Sep 17 00:00:00 2001 From: Adriaan de Jong Date: Thu, 30 Jun 2011 16:28:56 +0200 Subject: Separated OpenSSL-specific parts of the PKCS#11 driver Signed-off-by: Adriaan de Jong Acked-by: James Yonan Signed-off-by: David Sommerseth --- ssl_openssl.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'ssl_openssl.c') diff --git a/ssl_openssl.c b/ssl_openssl.c index 2d5e914..f85f81a 100644 --- a/ssl_openssl.c +++ b/ssl_openssl.c @@ -323,23 +323,6 @@ tls_ctx_load_pkcs12(struct tls_root_ctx *ctx, const char *pkcs12_file, return 0; } -#ifdef ENABLE_PKCS11 -int -tls_ctx_load_pkcs11(struct tls_root_ctx *ctx, bool pkcs11_id_management, - const char *pkcs11_id) -{ - ASSERT(NULL != ctx); - - /* Load Certificate and Private Key */ - if (!SSL_CTX_use_pkcs11 (ctx->ctx, pkcs11_id_management, pkcs11_id)) - { - msg (M_WARN, "Cannot load certificate \"%s\" using PKCS#11 interface", pkcs11_id); - return 1; - } - return 0; -} -#endif /* ENABLE_PKCS11 */ - #ifdef WIN32 void tls_ctx_load_cryptoapi(struct tls_root_ctx *ctx, const char *cryptoapi_cert) -- cgit