2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2018-03-20 13:00:17 +00:00
|
|
|
* Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2006-04-06 13:02:06 +00:00
|
|
|
*
|
2016-05-17 18:24:46 +00:00
|
|
|
* 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
|
2006-04-06 13:02:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2016-03-18 18:30:20 +00:00
|
|
|
#include <openssl/engine.h>
|
2015-12-27 14:59:04 +00:00
|
|
|
#include <openssl/evp.h>
|
2016-03-01 14:47:15 +00:00
|
|
|
#include <openssl/x509v3.h>
|
2015-03-23 18:42:42 +00:00
|
|
|
#include "internal/asn1_int.h"
|
2015-03-23 22:57:47 +00:00
|
|
|
#include "internal/evp_int.h"
|
2016-03-01 14:47:15 +00:00
|
|
|
#include "internal/numbers.h"
|
2006-04-06 13:02:06 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
typedef int sk_cmp_fn_type(const char *const *a, const char *const *b);
|
2008-06-04 11:01:43 +00:00
|
|
|
|
2015-09-05 12:32:58 +00:00
|
|
|
static STACK_OF(EVP_PKEY_METHOD) *app_pkey_methods = NULL;
|
2006-04-06 13:02:06 +00:00
|
|
|
|
2017-07-22 18:04:55 +00:00
|
|
|
/* This array needs to be in order of NIDs */
|
2015-01-22 03:40:55 +00:00
|
|
|
static const EVP_PKEY_METHOD *standard_methods[] = {
|
2009-04-26 22:18:22 +00:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
2015-01-22 03:40:55 +00:00
|
|
|
&rsa_pkey_meth,
|
2009-04-26 22:18:22 +00:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DH
|
2015-01-22 03:40:55 +00:00
|
|
|
&dh_pkey_meth,
|
2009-04-26 22:18:22 +00:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
2015-01-22 03:40:55 +00:00
|
|
|
&dsa_pkey_meth,
|
2009-04-26 22:18:22 +00:00
|
|
|
#endif
|
2009-04-23 16:32:42 +00:00
|
|
|
#ifndef OPENSSL_NO_EC
|
2015-01-22 03:40:55 +00:00
|
|
|
&ec_pkey_meth,
|
2009-04-23 16:32:42 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
&hmac_pkey_meth,
|
2016-03-18 13:49:25 +00:00
|
|
|
#ifndef OPENSSL_NO_CMAC
|
2015-01-22 03:40:55 +00:00
|
|
|
&cmac_pkey_meth,
|
2016-03-18 13:49:25 +00:00
|
|
|
#endif
|
2016-11-24 21:44:50 +00:00
|
|
|
#ifndef OPENSSL_NO_RSA
|
|
|
|
&rsa_pss_pkey_meth,
|
|
|
|
#endif
|
2011-12-07 00:32:34 +00:00
|
|
|
#ifndef OPENSSL_NO_DH
|
2016-01-19 13:57:19 +00:00
|
|
|
&dhx_pkey_meth,
|
2017-07-22 18:04:55 +00:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_SCRYPT
|
|
|
|
&scrypt_pkey_meth,
|
2011-12-07 00:32:34 +00:00
|
|
|
#endif
|
2016-03-02 23:58:27 +00:00
|
|
|
&tls1_prf_pkey_meth,
|
2016-08-09 20:58:55 +00:00
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
&ecx25519_pkey_meth,
|
2018-02-28 14:59:44 +00:00
|
|
|
&ecx448_pkey_meth,
|
2016-08-09 20:58:55 +00:00
|
|
|
#endif
|
2016-12-16 22:00:43 +00:00
|
|
|
&hkdf_pkey_meth,
|
|
|
|
#ifndef OPENSSL_NO_POLY1305
|
|
|
|
&poly1305_pkey_meth,
|
|
|
|
#endif
|
2017-01-11 21:38:44 +00:00
|
|
|
#ifndef OPENSSL_NO_SIPHASH
|
|
|
|
&siphash_pkey_meth,
|
|
|
|
#endif
|
2017-04-05 20:47:57 +00:00
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
&ed25519_pkey_meth,
|
2018-02-28 14:59:44 +00:00
|
|
|
&ed448_pkey_meth,
|
2017-04-05 20:47:57 +00:00
|
|
|
#endif
|
2018-06-18 19:51:56 +00:00
|
|
|
#ifndef OPENSSL_NO_SM2
|
|
|
|
&sm2_pkey_meth,
|
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
};
|
2006-04-06 13:02:06 +00:00
|
|
|
|
2008-10-20 15:12:00 +00:00
|
|
|
DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, const EVP_PKEY_METHOD *,
|
2015-01-22 03:40:55 +00:00
|
|
|
pmeth);
|
2008-10-12 14:32:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
static int pmeth_cmp(const EVP_PKEY_METHOD *const *a,
|
|
|
|
const EVP_PKEY_METHOD *const *b)
|
|
|
|
{
|
|
|
|
return ((*a)->pkey_id - (*b)->pkey_id);
|
|
|
|
}
|
2006-04-06 13:02:06 +00:00
|
|
|
|
2008-10-20 15:12:00 +00:00
|
|
|
IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, const EVP_PKEY_METHOD *,
|
2015-01-22 03:40:55 +00:00
|
|
|
pmeth);
|
2008-10-12 14:32:47 +00:00
|
|
|
|
2006-06-02 12:33:39 +00:00
|
|
|
const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
EVP_PKEY_METHOD tmp;
|
|
|
|
const EVP_PKEY_METHOD *t = &tmp, **ret;
|
|
|
|
tmp.pkey_id = type;
|
|
|
|
if (app_pkey_methods) {
|
|
|
|
int idx;
|
|
|
|
idx = sk_EVP_PKEY_METHOD_find(app_pkey_methods, &tmp);
|
|
|
|
if (idx >= 0)
|
|
|
|
return sk_EVP_PKEY_METHOD_value(app_pkey_methods, idx);
|
|
|
|
}
|
|
|
|
ret = OBJ_bsearch_pmeth(&t, standard_methods,
|
|
|
|
sizeof(standard_methods) /
|
|
|
|
sizeof(EVP_PKEY_METHOD *));
|
|
|
|
if (!ret || !*ret)
|
|
|
|
return NULL;
|
|
|
|
return *ret;
|
|
|
|
}
|
2006-04-06 13:02:06 +00:00
|
|
|
|
2006-04-11 13:28:52 +00:00
|
|
|
static EVP_PKEY_CTX *int_ctx_new(EVP_PKEY *pkey, ENGINE *e, int id)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
EVP_PKEY_CTX *ret;
|
|
|
|
const EVP_PKEY_METHOD *pmeth;
|
2018-06-18 19:49:15 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (id == -1) {
|
2018-06-18 19:49:15 +00:00
|
|
|
id = pkey->type;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2009-02-15 15:28:18 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2017-10-09 13:37:21 +00:00
|
|
|
if (e == NULL && pkey != NULL)
|
2017-10-09 14:21:11 +00:00
|
|
|
e = pkey->pmeth_engine != NULL ? pkey->pmeth_engine : pkey->engine;
|
2015-01-22 03:40:55 +00:00
|
|
|
/* Try to find an ENGINE which implements this method */
|
|
|
|
if (e) {
|
|
|
|
if (!ENGINE_init(e)) {
|
|
|
|
EVPerr(EVP_F_INT_CTX_NEW, ERR_R_ENGINE_LIB);
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-10-09 13:37:21 +00:00
|
|
|
} else {
|
2015-01-22 03:40:55 +00:00
|
|
|
e = ENGINE_get_pkey_meth_engine(id);
|
2017-10-09 13:37:21 +00:00
|
|
|
}
|
2015-01-22 03:40:55 +00:00
|
|
|
|
|
|
|
/*
|
2016-02-05 20:23:54 +00:00
|
|
|
* If an ENGINE handled this method look it up. Otherwise use internal
|
2015-01-22 03:40:55 +00:00
|
|
|
* tables.
|
|
|
|
*/
|
|
|
|
if (e)
|
|
|
|
pmeth = ENGINE_get_pkey_meth(e, id);
|
|
|
|
else
|
2009-02-15 15:28:18 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
pmeth = EVP_PKEY_meth_find(id);
|
2006-06-02 12:33:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (pmeth == NULL) {
|
2017-10-09 22:24:26 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
|
|
ENGINE_finish(e);
|
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
EVPerr(EVP_F_INT_CTX_NEW, EVP_R_UNSUPPORTED_ALGORITHM);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-06-02 12:33:39 +00:00
|
|
|
|
2015-09-03 13:15:26 +00:00
|
|
|
ret = OPENSSL_zalloc(sizeof(*ret));
|
2015-10-30 11:12:26 +00:00
|
|
|
if (ret == NULL) {
|
2009-02-15 15:28:18 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2016-02-25 17:09:06 +00:00
|
|
|
ENGINE_finish(e);
|
2009-02-15 15:28:18 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
EVPerr(EVP_F_INT_CTX_NEW, ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ret->engine = e;
|
|
|
|
ret->pmeth = pmeth;
|
|
|
|
ret->operation = EVP_PKEY_OP_UNDEFINED;
|
|
|
|
ret->pkey = pkey;
|
|
|
|
if (pkey)
|
2016-02-26 12:21:15 +00:00
|
|
|
EVP_PKEY_up_ref(pkey);
|
2015-01-22 03:40:55 +00:00
|
|
|
|
|
|
|
if (pmeth->init) {
|
|
|
|
if (pmeth->init(ret) <= 0) {
|
2017-02-01 17:29:47 +00:00
|
|
|
ret->pmeth = NULL;
|
2015-01-22 03:40:55 +00:00
|
|
|
EVP_PKEY_CTX_free(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
EVP_PKEY_METHOD *EVP_PKEY_meth_new(int id, int flags)
|
|
|
|
{
|
|
|
|
EVP_PKEY_METHOD *pmeth;
|
2015-05-02 03:10:31 +00:00
|
|
|
|
2015-08-25 17:25:58 +00:00
|
|
|
pmeth = OPENSSL_zalloc(sizeof(*pmeth));
|
2018-03-29 18:59:58 +00:00
|
|
|
if (pmeth == NULL) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_METH_NEW, ERR_R_MALLOC_FAILURE);
|
2015-01-22 03:40:55 +00:00
|
|
|
return NULL;
|
2018-03-29 18:59:58 +00:00
|
|
|
}
|
2015-01-22 03:40:55 +00:00
|
|
|
|
|
|
|
pmeth->pkey_id = id;
|
|
|
|
pmeth->flags = flags | EVP_PKEY_FLAG_DYNAMIC;
|
|
|
|
return pmeth;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
2010-11-24 16:08:20 +00:00
|
|
|
void EVP_PKEY_meth_get0_info(int *ppkey_id, int *pflags,
|
2015-01-22 03:40:55 +00:00
|
|
|
const EVP_PKEY_METHOD *meth)
|
|
|
|
{
|
|
|
|
if (ppkey_id)
|
|
|
|
*ppkey_id = meth->pkey_id;
|
|
|
|
if (pflags)
|
|
|
|
*pflags = meth->flags;
|
|
|
|
}
|
2010-11-24 16:08:20 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->init = src->init;
|
|
|
|
dst->copy = src->copy;
|
|
|
|
dst->cleanup = src->cleanup;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->paramgen_init = src->paramgen_init;
|
|
|
|
dst->paramgen = src->paramgen;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->keygen_init = src->keygen_init;
|
|
|
|
dst->keygen = src->keygen;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->sign_init = src->sign_init;
|
|
|
|
dst->sign = src->sign;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->verify_init = src->verify_init;
|
|
|
|
dst->verify = src->verify;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->verify_recover_init = src->verify_recover_init;
|
|
|
|
dst->verify_recover = src->verify_recover;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->signctx_init = src->signctx_init;
|
|
|
|
dst->signctx = src->signctx;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->verifyctx_init = src->verifyctx_init;
|
|
|
|
dst->verifyctx = src->verifyctx;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->encrypt_init = src->encrypt_init;
|
|
|
|
dst->encrypt = src->encrypt;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->decrypt_init = src->decrypt_init;
|
|
|
|
dst->decrypt = src->decrypt;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->derive_init = src->derive_init;
|
|
|
|
dst->derive = src->derive;
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
dst->ctrl = src->ctrl;
|
|
|
|
dst->ctrl_str = src->ctrl_str;
|
2017-09-04 14:02:59 +00:00
|
|
|
|
|
|
|
dst->check = src->check;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2010-11-24 16:08:20 +00:00
|
|
|
|
2006-04-14 12:41:35 +00:00
|
|
|
void EVP_PKEY_meth_free(EVP_PKEY_METHOD *pmeth)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (pmeth && (pmeth->flags & EVP_PKEY_FLAG_DYNAMIC))
|
|
|
|
OPENSSL_free(pmeth);
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
2006-04-11 13:28:52 +00:00
|
|
|
EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return int_ctx_new(pkey, e, -1);
|
|
|
|
}
|
2006-04-11 13:28:52 +00:00
|
|
|
|
|
|
|
EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return int_ctx_new(NULL, e, id);
|
|
|
|
}
|
2006-04-11 13:28:52 +00:00
|
|
|
|
2006-05-24 23:49:30 +00:00
|
|
|
EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *pctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
EVP_PKEY_CTX *rctx;
|
|
|
|
if (!pctx->pmeth || !pctx->pmeth->copy)
|
|
|
|
return NULL;
|
2006-06-02 12:33:39 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2015-01-22 03:40:55 +00:00
|
|
|
/* Make sure it's safe to copy a pkey context using an ENGINE */
|
|
|
|
if (pctx->engine && !ENGINE_init(pctx->engine)) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_DUP, ERR_R_ENGINE_LIB);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-06-02 12:33:39 +00:00
|
|
|
#endif
|
2015-05-02 03:10:31 +00:00
|
|
|
rctx = OPENSSL_malloc(sizeof(*rctx));
|
2018-03-29 18:59:58 +00:00
|
|
|
if (rctx == NULL) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_DUP, ERR_R_MALLOC_FAILURE);
|
2015-01-22 03:40:55 +00:00
|
|
|
return NULL;
|
2018-03-29 18:59:58 +00:00
|
|
|
}
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
rctx->pmeth = pctx->pmeth;
|
2006-06-02 12:33:39 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2015-01-22 03:40:55 +00:00
|
|
|
rctx->engine = pctx->engine;
|
2006-06-02 12:33:39 +00:00
|
|
|
#endif
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (pctx->pkey)
|
2016-02-26 12:21:15 +00:00
|
|
|
EVP_PKEY_up_ref(pctx->pkey);
|
2006-06-27 17:23:24 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
rctx->pkey = pctx->pkey;
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (pctx->peerkey)
|
2016-02-26 12:21:15 +00:00
|
|
|
EVP_PKEY_up_ref(pctx->peerkey);
|
2006-06-27 17:23:24 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
rctx->peerkey = pctx->peerkey;
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
rctx->data = NULL;
|
|
|
|
rctx->app_data = NULL;
|
|
|
|
rctx->operation = pctx->operation;
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (pctx->pmeth->copy(rctx, pctx) > 0)
|
|
|
|
return rctx;
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2017-02-01 17:29:47 +00:00
|
|
|
rctx->pmeth = NULL;
|
2015-01-22 03:40:55 +00:00
|
|
|
EVP_PKEY_CTX_free(rctx);
|
|
|
|
return NULL;
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2006-05-24 23:49:30 +00:00
|
|
|
|
2006-04-14 12:41:35 +00:00
|
|
|
int EVP_PKEY_meth_add0(const EVP_PKEY_METHOD *pmeth)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (app_pkey_methods == NULL) {
|
|
|
|
app_pkey_methods = sk_EVP_PKEY_METHOD_new(pmeth_cmp);
|
2018-03-29 18:59:58 +00:00
|
|
|
if (app_pkey_methods == NULL){
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_METH_ADD0, ERR_R_MALLOC_FAILURE);
|
2015-01-22 03:40:55 +00:00
|
|
|
return 0;
|
2018-03-29 18:59:58 +00:00
|
|
|
}
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2018-03-29 18:59:58 +00:00
|
|
|
if (!sk_EVP_PKEY_METHOD_push(app_pkey_methods, pmeth)) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_METH_ADD0, ERR_R_MALLOC_FAILURE);
|
2015-01-22 03:40:55 +00:00
|
|
|
return 0;
|
2018-03-29 18:59:58 +00:00
|
|
|
}
|
2015-01-22 03:40:55 +00:00
|
|
|
sk_EVP_PKEY_METHOD_sort(app_pkey_methods);
|
|
|
|
return 1;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
2017-09-11 15:15:55 +00:00
|
|
|
void evp_app_cleanup_int(void)
|
|
|
|
{
|
|
|
|
if (app_pkey_methods != NULL)
|
|
|
|
sk_EVP_PKEY_METHOD_pop_free(app_pkey_methods, EVP_PKEY_meth_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
int EVP_PKEY_meth_remove(const EVP_PKEY_METHOD *pmeth)
|
|
|
|
{
|
|
|
|
const EVP_PKEY_METHOD *ret;
|
|
|
|
|
|
|
|
ret = sk_EVP_PKEY_METHOD_delete_ptr(app_pkey_methods, pmeth);
|
|
|
|
|
|
|
|
return ret == NULL ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
2017-07-25 16:48:26 +00:00
|
|
|
size_t EVP_PKEY_meth_get_count(void)
|
|
|
|
{
|
|
|
|
size_t rv = OSSL_NELEM(standard_methods);
|
|
|
|
|
|
|
|
if (app_pkey_methods)
|
|
|
|
rv += sk_EVP_PKEY_METHOD_num(app_pkey_methods);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
const EVP_PKEY_METHOD *EVP_PKEY_meth_get0(size_t idx)
|
|
|
|
{
|
|
|
|
if (idx < OSSL_NELEM(standard_methods))
|
|
|
|
return standard_methods[idx];
|
|
|
|
if (app_pkey_methods == NULL)
|
|
|
|
return NULL;
|
|
|
|
idx -= OSSL_NELEM(standard_methods);
|
|
|
|
if (idx >= (size_t)sk_EVP_PKEY_METHOD_num(app_pkey_methods))
|
|
|
|
return NULL;
|
|
|
|
return sk_EVP_PKEY_METHOD_value(app_pkey_methods, idx);
|
|
|
|
}
|
|
|
|
|
2006-04-06 17:32:43 +00:00
|
|
|
void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (ctx == NULL)
|
|
|
|
return;
|
|
|
|
if (ctx->pmeth && ctx->pmeth->cleanup)
|
|
|
|
ctx->pmeth->cleanup(ctx);
|
2015-03-28 14:54:15 +00:00
|
|
|
EVP_PKEY_free(ctx->pkey);
|
|
|
|
EVP_PKEY_free(ctx->peerkey);
|
2006-06-02 12:33:39 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2016-02-25 17:09:06 +00:00
|
|
|
ENGINE_finish(ctx->engine);
|
2006-06-02 12:33:39 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
2006-04-06 17:32:43 +00:00
|
|
|
|
2006-04-06 13:02:06 +00:00
|
|
|
int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype,
|
2015-01-22 03:40:55 +00:00
|
|
|
int cmd, int p1, void *p2)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
if (!ctx || !ctx->pmeth || !ctx->pmeth->ctrl) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_COMMAND_NOT_SUPPORTED);
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
if ((keytype != -1) && (ctx->pmeth->pkey_id != keytype))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (ctx->operation == EVP_PKEY_OP_UNDEFINED) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_NO_OPERATION_SET);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((optype != -1) && !(ctx->operation & optype)) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_INVALID_OPERATION);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ctx->pmeth->ctrl(ctx, cmd, p1, p2);
|
|
|
|
|
|
|
|
if (ret == -2)
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_COMMAND_NOT_SUPPORTED);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
2006-04-06 13:02:06 +00:00
|
|
|
|
2017-07-22 18:04:55 +00:00
|
|
|
int EVP_PKEY_CTX_ctrl_uint64(EVP_PKEY_CTX *ctx, int keytype, int optype,
|
2017-08-15 16:52:24 +00:00
|
|
|
int cmd, uint64_t value)
|
2017-07-22 18:04:55 +00:00
|
|
|
{
|
|
|
|
return EVP_PKEY_CTX_ctrl(ctx, keytype, optype, cmd, 0, &value);
|
|
|
|
}
|
|
|
|
|
2006-04-09 12:42:09 +00:00
|
|
|
int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx,
|
2015-01-22 03:40:55 +00:00
|
|
|
const char *name, const char *value)
|
|
|
|
{
|
|
|
|
if (!ctx || !ctx->pmeth || !ctx->pmeth->ctrl_str) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_CTRL_STR, EVP_R_COMMAND_NOT_SUPPORTED);
|
|
|
|
return -2;
|
|
|
|
}
|
2016-11-30 16:21:01 +00:00
|
|
|
if (strcmp(name, "digest") == 0)
|
|
|
|
return EVP_PKEY_CTX_md(ctx, EVP_PKEY_OP_TYPE_SIG, EVP_PKEY_CTRL_MD,
|
|
|
|
value);
|
2015-01-22 03:40:55 +00:00
|
|
|
return ctx->pmeth->ctrl_str(ctx, name, value);
|
|
|
|
}
|
2006-04-11 13:28:52 +00:00
|
|
|
|
2016-03-01 14:47:15 +00:00
|
|
|
/* Utility functions to send a string of hex string to a ctrl */
|
|
|
|
|
|
|
|
int EVP_PKEY_CTX_str2ctrl(EVP_PKEY_CTX *ctx, int cmd, const char *str)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = strlen(str);
|
|
|
|
if (len > INT_MAX)
|
|
|
|
return -1;
|
|
|
|
return ctx->pmeth->ctrl(ctx, cmd, len, (void *)str);
|
|
|
|
}
|
|
|
|
|
|
|
|
int EVP_PKEY_CTX_hex2ctrl(EVP_PKEY_CTX *ctx, int cmd, const char *hex)
|
|
|
|
{
|
|
|
|
unsigned char *bin;
|
|
|
|
long binlen;
|
|
|
|
int rv = -1;
|
|
|
|
|
2016-04-13 19:58:28 +00:00
|
|
|
bin = OPENSSL_hexstr2buf(hex, &binlen);
|
2016-03-01 14:47:15 +00:00
|
|
|
if (bin == NULL)
|
|
|
|
return 0;
|
|
|
|
if (binlen <= INT_MAX)
|
|
|
|
rv = ctx->pmeth->ctrl(ctx, cmd, binlen, bin);
|
|
|
|
OPENSSL_free(bin);
|
|
|
|
return rv;
|
|
|
|
}
|
2017-01-05 23:18:28 +00:00
|
|
|
|
2016-11-30 16:21:01 +00:00
|
|
|
/* Pass a message digest to a ctrl */
|
|
|
|
int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md)
|
|
|
|
{
|
|
|
|
const EVP_MD *m;
|
2017-01-07 17:17:30 +00:00
|
|
|
|
2016-11-30 16:21:01 +00:00
|
|
|
if (md == NULL || (m = EVP_get_digestbyname(md)) == NULL) {
|
|
|
|
EVPerr(EVP_F_EVP_PKEY_CTX_MD, EVP_R_INVALID_DIGEST);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return EVP_PKEY_CTX_ctrl(ctx, -1, optype, cmd, 0, (void *)m);
|
|
|
|
}
|
2016-03-01 14:47:15 +00:00
|
|
|
|
2006-05-31 17:34:14 +00:00
|
|
|
int EVP_PKEY_CTX_get_operation(EVP_PKEY_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return ctx->operation;
|
|
|
|
}
|
2006-05-31 17:34:14 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ctx->keygen_info = dat;
|
|
|
|
ctx->keygen_info_count = datlen;
|
|
|
|
}
|
2006-05-31 17:34:14 +00:00
|
|
|
|
2006-04-11 13:28:52 +00:00
|
|
|
void EVP_PKEY_CTX_set_data(EVP_PKEY_CTX *ctx, void *data)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ctx->data = data;
|
|
|
|
}
|
2006-04-11 13:28:52 +00:00
|
|
|
|
|
|
|
void *EVP_PKEY_CTX_get_data(EVP_PKEY_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return ctx->data;
|
|
|
|
}
|
2006-04-11 13:28:52 +00:00
|
|
|
|
2006-04-26 11:52:36 +00:00
|
|
|
EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return ctx->pkey;
|
|
|
|
}
|
2006-04-26 11:52:36 +00:00
|
|
|
|
1. Changes for s_client.c to make it return non-zero exit code in case
of handshake failure
2. Changes to x509_certificate_type function (crypto/x509/x509type.c) to
make it recognize GOST certificates as EVP_PKT_SIGN|EVP_PKT_EXCH
(required for s3_srvr to accept GOST client certificates).
3. Changes to EVP
- adding of function EVP_PKEY_CTX_get0_peerkey
- Make function EVP_PKEY_derive_set_peerkey work for context with
ENCRYPT operation, because we use peerkey field in the context to
pass non-ephemeral secret key to GOST encrypt operation.
- added EVP_PKEY_CTRL_SET_IV control command. It is really
GOST-specific, but it is used in SSL code, so it has to go
in some header file, available during libssl compilation
4. Fix to HMAC to avoid call of OPENSSL_cleanse on undefined data
5. Include des.h if KSSL_DEBUG is defined into some libssl files, to
make debugging output which depends on constants defined there, work
and other KSSL_DEBUG output fixes
6. Declaration of real GOST ciphersuites, two authentication methods
SSL_aGOST94 and SSL_aGOST2001 and one key exchange method SSL_kGOST
7. Implementation of these methods.
8. Support for sending unsolicited serverhello extension if GOST
ciphersuite is selected. It is require for interoperability with
CryptoPro CSP 3.0 and 3.6 and controlled by
SSL_OP_CRYPTOPRO_TLSEXT_BUG constant.
This constant is added to SSL_OP_ALL, because it does nothing, if
non-GOST ciphersuite is selected, and all implementation of GOST
include compatibility with CryptoPro.
9. Support for CertificateVerify message without length field. It is
another CryptoPro bug, but support is made unconditional, because it
does no harm for draft-conforming implementation.
10. In tls1_mac extra copy of stream mac context is no more done.
When I've written currently commited code I haven't read
EVP_DigestSignFinal manual carefully enough and haven't noticed that
it does an internal digest ctx copying.
This implementation was tested against
1. CryptoPro CSP 3.6 client and server
2. Cryptopro CSP 3.0 server
2007-10-26 12:06:36 +00:00
|
|
|
EVP_PKEY *EVP_PKEY_CTX_get0_peerkey(EVP_PKEY_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return ctx->peerkey;
|
|
|
|
}
|
|
|
|
|
2006-04-11 13:28:52 +00:00
|
|
|
void EVP_PKEY_CTX_set_app_data(EVP_PKEY_CTX *ctx, void *data)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ctx->app_data = data;
|
|
|
|
}
|
2006-04-11 13:28:52 +00:00
|
|
|
|
|
|
|
void *EVP_PKEY_CTX_get_app_data(EVP_PKEY_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return ctx->app_data;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_init(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*init) (EVP_PKEY_CTX *ctx))
|
|
|
|
{
|
|
|
|
pmeth->init = init;
|
|
|
|
}
|
2006-05-24 23:49:30 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_copy(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*copy) (EVP_PKEY_CTX *dst,
|
|
|
|
EVP_PKEY_CTX *src))
|
|
|
|
{
|
|
|
|
pmeth->copy = copy;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_cleanup(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
void (*cleanup) (EVP_PKEY_CTX *ctx))
|
|
|
|
{
|
|
|
|
pmeth->cleanup = cleanup;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_paramgen(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*paramgen_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*paramgen) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
pmeth->paramgen_init = paramgen_init;
|
|
|
|
pmeth->paramgen = paramgen;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_keygen(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*keygen_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*keygen) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
pmeth->keygen_init = keygen_init;
|
|
|
|
pmeth->keygen = keygen;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_sign(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*sign_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*sign) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *sig, size_t *siglen,
|
|
|
|
const unsigned char *tbs,
|
|
|
|
size_t tbslen))
|
|
|
|
{
|
|
|
|
pmeth->sign_init = sign_init;
|
|
|
|
pmeth->sign = sign;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_verify(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*verify_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*verify) (EVP_PKEY_CTX *ctx,
|
|
|
|
const unsigned char *sig,
|
|
|
|
size_t siglen,
|
|
|
|
const unsigned char *tbs,
|
|
|
|
size_t tbslen))
|
|
|
|
{
|
|
|
|
pmeth->verify_init = verify_init;
|
|
|
|
pmeth->verify = verify;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_verify_recover(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*verify_recover_init) (EVP_PKEY_CTX
|
|
|
|
*ctx),
|
|
|
|
int (*verify_recover) (EVP_PKEY_CTX
|
|
|
|
*ctx,
|
|
|
|
unsigned char
|
|
|
|
*sig,
|
|
|
|
size_t *siglen,
|
|
|
|
const unsigned
|
|
|
|
char *tbs,
|
|
|
|
size_t tbslen))
|
|
|
|
{
|
|
|
|
pmeth->verify_recover_init = verify_recover_init;
|
|
|
|
pmeth->verify_recover = verify_recover;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_signctx(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*signctx_init) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_MD_CTX *mctx),
|
|
|
|
int (*signctx) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *sig,
|
|
|
|
size_t *siglen,
|
|
|
|
EVP_MD_CTX *mctx))
|
|
|
|
{
|
|
|
|
pmeth->signctx_init = signctx_init;
|
|
|
|
pmeth->signctx = signctx;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_verifyctx(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*verifyctx_init) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_MD_CTX *mctx),
|
|
|
|
int (*verifyctx) (EVP_PKEY_CTX *ctx,
|
|
|
|
const unsigned char *sig,
|
|
|
|
int siglen,
|
|
|
|
EVP_MD_CTX *mctx))
|
|
|
|
{
|
|
|
|
pmeth->verifyctx_init = verifyctx_init;
|
|
|
|
pmeth->verifyctx = verifyctx;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_encrypt(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*encrypt_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*encryptfn) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *out,
|
|
|
|
size_t *outlen,
|
|
|
|
const unsigned char *in,
|
|
|
|
size_t inlen))
|
|
|
|
{
|
|
|
|
pmeth->encrypt_init = encrypt_init;
|
|
|
|
pmeth->encrypt = encryptfn;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_decrypt(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*decrypt_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*decrypt) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *out,
|
|
|
|
size_t *outlen,
|
|
|
|
const unsigned char *in,
|
|
|
|
size_t inlen))
|
|
|
|
{
|
|
|
|
pmeth->decrypt_init = decrypt_init;
|
|
|
|
pmeth->decrypt = decrypt;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_derive(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*derive_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (*derive) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *key,
|
|
|
|
size_t *keylen))
|
|
|
|
{
|
|
|
|
pmeth->derive_init = derive_init;
|
|
|
|
pmeth->derive = derive;
|
|
|
|
}
|
2006-04-14 12:41:35 +00:00
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_ctrl(EVP_PKEY_METHOD *pmeth,
|
2015-01-22 03:40:55 +00:00
|
|
|
int (*ctrl) (EVP_PKEY_CTX *ctx, int type, int p1,
|
|
|
|
void *p2),
|
|
|
|
int (*ctrl_str) (EVP_PKEY_CTX *ctx,
|
|
|
|
const char *type,
|
|
|
|
const char *value))
|
|
|
|
{
|
|
|
|
pmeth->ctrl = ctrl;
|
|
|
|
pmeth->ctrl_str = ctrl_str;
|
|
|
|
}
|
2015-07-20 21:05:10 +00:00
|
|
|
|
2017-09-04 14:02:59 +00:00
|
|
|
void EVP_PKEY_meth_set_check(EVP_PKEY_METHOD *pmeth,
|
|
|
|
int (*check) (EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
pmeth->check = check;
|
|
|
|
}
|
|
|
|
|
2017-10-31 16:45:24 +00:00
|
|
|
void EVP_PKEY_meth_set_public_check(EVP_PKEY_METHOD *pmeth,
|
|
|
|
int (*check) (EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
pmeth->public_check = check;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EVP_PKEY_meth_set_param_check(EVP_PKEY_METHOD *pmeth,
|
|
|
|
int (*check) (EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
pmeth->param_check = check;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_init(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pinit) (EVP_PKEY_CTX *ctx))
|
|
|
|
{
|
|
|
|
*pinit = pmeth->init;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_copy(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pcopy) (EVP_PKEY_CTX *dst,
|
|
|
|
EVP_PKEY_CTX *src))
|
|
|
|
{
|
|
|
|
*pcopy = pmeth->copy;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_cleanup(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
void (**pcleanup) (EVP_PKEY_CTX *ctx))
|
|
|
|
{
|
|
|
|
*pcleanup = pmeth->cleanup;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_paramgen(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pparamgen_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**pparamgen) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
if (pparamgen_init)
|
|
|
|
*pparamgen_init = pmeth->paramgen_init;
|
|
|
|
if (pparamgen)
|
|
|
|
*pparamgen = pmeth->paramgen;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_keygen(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pkeygen_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**pkeygen) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
if (pkeygen_init)
|
|
|
|
*pkeygen_init = pmeth->keygen_init;
|
|
|
|
if (pkeygen)
|
|
|
|
*pkeygen = pmeth->keygen;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_sign(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**psign_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**psign) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *sig, size_t *siglen,
|
|
|
|
const unsigned char *tbs,
|
|
|
|
size_t tbslen))
|
|
|
|
{
|
|
|
|
if (psign_init)
|
|
|
|
*psign_init = pmeth->sign_init;
|
|
|
|
if (psign)
|
|
|
|
*psign = pmeth->sign;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_verify(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pverify_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**pverify) (EVP_PKEY_CTX *ctx,
|
|
|
|
const unsigned char *sig,
|
|
|
|
size_t siglen,
|
|
|
|
const unsigned char *tbs,
|
|
|
|
size_t tbslen))
|
|
|
|
{
|
|
|
|
if (pverify_init)
|
|
|
|
*pverify_init = pmeth->verify_init;
|
|
|
|
if (pverify)
|
|
|
|
*pverify = pmeth->verify;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_verify_recover(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pverify_recover_init) (EVP_PKEY_CTX
|
|
|
|
*ctx),
|
|
|
|
int (**pverify_recover) (EVP_PKEY_CTX
|
|
|
|
*ctx,
|
|
|
|
unsigned char
|
|
|
|
*sig,
|
|
|
|
size_t *siglen,
|
|
|
|
const unsigned
|
|
|
|
char *tbs,
|
|
|
|
size_t tbslen))
|
|
|
|
{
|
|
|
|
if (pverify_recover_init)
|
|
|
|
*pverify_recover_init = pmeth->verify_recover_init;
|
|
|
|
if (pverify_recover)
|
|
|
|
*pverify_recover = pmeth->verify_recover;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_signctx(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**psignctx_init) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_MD_CTX *mctx),
|
|
|
|
int (**psignctx) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *sig,
|
|
|
|
size_t *siglen,
|
|
|
|
EVP_MD_CTX *mctx))
|
|
|
|
{
|
|
|
|
if (psignctx_init)
|
|
|
|
*psignctx_init = pmeth->signctx_init;
|
|
|
|
if (psignctx)
|
|
|
|
*psignctx = pmeth->signctx;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_verifyctx(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pverifyctx_init) (EVP_PKEY_CTX *ctx,
|
|
|
|
EVP_MD_CTX *mctx),
|
|
|
|
int (**pverifyctx) (EVP_PKEY_CTX *ctx,
|
|
|
|
const unsigned char *sig,
|
|
|
|
int siglen,
|
|
|
|
EVP_MD_CTX *mctx))
|
|
|
|
{
|
|
|
|
if (pverifyctx_init)
|
|
|
|
*pverifyctx_init = pmeth->verifyctx_init;
|
|
|
|
if (pverifyctx)
|
|
|
|
*pverifyctx = pmeth->verifyctx;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_encrypt(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pencrypt_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**pencryptfn) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *out,
|
|
|
|
size_t *outlen,
|
|
|
|
const unsigned char *in,
|
|
|
|
size_t inlen))
|
|
|
|
{
|
|
|
|
if (pencrypt_init)
|
|
|
|
*pencrypt_init = pmeth->encrypt_init;
|
|
|
|
if (pencryptfn)
|
|
|
|
*pencryptfn = pmeth->encrypt;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_decrypt(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pdecrypt_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**pdecrypt) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *out,
|
|
|
|
size_t *outlen,
|
|
|
|
const unsigned char *in,
|
|
|
|
size_t inlen))
|
|
|
|
{
|
|
|
|
if (pdecrypt_init)
|
|
|
|
*pdecrypt_init = pmeth->decrypt_init;
|
|
|
|
if (pdecrypt)
|
|
|
|
*pdecrypt = pmeth->decrypt;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_derive(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pderive_init) (EVP_PKEY_CTX *ctx),
|
|
|
|
int (**pderive) (EVP_PKEY_CTX *ctx,
|
|
|
|
unsigned char *key,
|
|
|
|
size_t *keylen))
|
|
|
|
{
|
|
|
|
if (pderive_init)
|
|
|
|
*pderive_init = pmeth->derive_init;
|
|
|
|
if (pderive)
|
|
|
|
*pderive = pmeth->derive;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_ctrl(const EVP_PKEY_METHOD *pmeth,
|
2015-07-20 21:05:10 +00:00
|
|
|
int (**pctrl) (EVP_PKEY_CTX *ctx, int type, int p1,
|
|
|
|
void *p2),
|
|
|
|
int (**pctrl_str) (EVP_PKEY_CTX *ctx,
|
|
|
|
const char *type,
|
|
|
|
const char *value))
|
|
|
|
{
|
|
|
|
if (pctrl)
|
|
|
|
*pctrl = pmeth->ctrl;
|
|
|
|
if (pctrl_str)
|
|
|
|
*pctrl_str = pmeth->ctrl_str;
|
|
|
|
}
|
2017-09-04 14:02:59 +00:00
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_check(const EVP_PKEY_METHOD *pmeth,
|
2017-09-04 14:02:59 +00:00
|
|
|
int (**pcheck) (EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
if (*pcheck)
|
|
|
|
*pcheck = pmeth->check;
|
|
|
|
}
|
2017-10-31 16:45:24 +00:00
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_public_check(const EVP_PKEY_METHOD *pmeth,
|
2017-10-31 16:45:24 +00:00
|
|
|
int (**pcheck) (EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
if (*pcheck)
|
|
|
|
*pcheck = pmeth->public_check;
|
|
|
|
}
|
|
|
|
|
2017-01-05 16:58:18 +00:00
|
|
|
void EVP_PKEY_meth_get_param_check(const EVP_PKEY_METHOD *pmeth,
|
2017-10-31 16:45:24 +00:00
|
|
|
int (**pcheck) (EVP_PKEY *pkey))
|
|
|
|
{
|
|
|
|
if (*pcheck)
|
|
|
|
*pcheck = pmeth->param_check;
|
|
|
|
}
|