eng_pkey.c 4.2 KB
Newer Older
R
Rich Salz 已提交
1 2
/*
 * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9
 */

10
#include "eng_local.h"
11

12
/* Basic get/set stuff */
13

14 15 16 17 18 19
int ENGINE_set_load_privkey_function(ENGINE *e,
                                     ENGINE_LOAD_KEY_PTR loadpriv_f)
{
    e->load_privkey = loadpriv_f;
    return 1;
}
20

21
int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f)
22 23 24 25
{
    e->load_pubkey = loadpub_f;
    return 1;
}
26

27
int ENGINE_set_load_ssl_client_cert_function(ENGINE *e,
28 29 30 31 32 33
                                             ENGINE_SSL_CLIENT_CERT_PTR
                                             loadssl_f)
{
    e->load_ssl_client_cert = loadssl_f;
    return 1;
}
34

35
ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e)
36 37 38
{
    return e->load_privkey;
}
39

40
ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e)
41 42 43
{
    return e->load_pubkey;
}
44

45 46 47 48 49
ENGINE_SSL_CLIENT_CERT_PTR ENGINE_get_ssl_client_cert_function(const ENGINE
                                                               *e)
{
    return e->load_ssl_client_cert;
}
50

51
/* API functions to load public/private keys */
52

53
EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id,
54 55 56
                                  UI_METHOD *ui_method, void *callback_data)
{
    EVP_PKEY *pkey;
B
Ben Laurie 已提交
57

58 59 60 61 62
    if (e == NULL) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY,
                  ERR_R_PASSED_NULL_PARAMETER);
        return 0;
    }
63
    CRYPTO_THREAD_write_lock(global_engine_lock);
64
    if (e->funct_ref == 0) {
65
        CRYPTO_THREAD_unlock(global_engine_lock);
66 67 68
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY, ENGINE_R_NOT_INITIALISED);
        return 0;
    }
69
    CRYPTO_THREAD_unlock(global_engine_lock);
70 71 72 73 74 75 76 77 78 79 80 81 82
    if (!e->load_privkey) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY,
                  ENGINE_R_NO_LOAD_FUNCTION);
        return 0;
    }
    pkey = e->load_privkey(e, key_id, ui_method, callback_data);
    if (!pkey) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY,
                  ENGINE_R_FAILED_LOADING_PRIVATE_KEY);
        return 0;
    }
    return pkey;
}
B
Ben Laurie 已提交
83

84
EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
85 86 87
                                 UI_METHOD *ui_method, void *callback_data)
{
    EVP_PKEY *pkey;
B
Ben Laurie 已提交
88

89 90 91 92 93
    if (e == NULL) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY,
                  ERR_R_PASSED_NULL_PARAMETER);
        return 0;
    }
94
    CRYPTO_THREAD_write_lock(global_engine_lock);
95
    if (e->funct_ref == 0) {
96
        CRYPTO_THREAD_unlock(global_engine_lock);
97 98 99
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, ENGINE_R_NOT_INITIALISED);
        return 0;
    }
100
    CRYPTO_THREAD_unlock(global_engine_lock);
101 102 103 104 105 106 107 108 109 110 111 112
    if (!e->load_pubkey) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, ENGINE_R_NO_LOAD_FUNCTION);
        return 0;
    }
    pkey = e->load_pubkey(e, key_id, ui_method, callback_data);
    if (!pkey) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY,
                  ENGINE_R_FAILED_LOADING_PUBLIC_KEY);
        return 0;
    }
    return pkey;
}
113 114

int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s,
115 116 117 118
                                STACK_OF(X509_NAME) *ca_dn, X509 **pcert,
                                EVP_PKEY **ppkey, STACK_OF(X509) **pother,
                                UI_METHOD *ui_method, void *callback_data)
{
119

120 121 122 123 124
    if (e == NULL) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT,
                  ERR_R_PASSED_NULL_PARAMETER);
        return 0;
    }
125
    CRYPTO_THREAD_write_lock(global_engine_lock);
126
    if (e->funct_ref == 0) {
127
        CRYPTO_THREAD_unlock(global_engine_lock);
128 129 130 131
        ENGINEerr(ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT,
                  ENGINE_R_NOT_INITIALISED);
        return 0;
    }
132
    CRYPTO_THREAD_unlock(global_engine_lock);
133 134 135 136 137 138 139 140
    if (!e->load_ssl_client_cert) {
        ENGINEerr(ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT,
                  ENGINE_R_NO_LOAD_FUNCTION);
        return 0;
    }
    return e->load_ssl_client_cert(e, s, ca_dn, pcert, ppkey, pother,
                                   ui_method, callback_data);
}