2019-08-30 20:33:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/core_numbers.h>
|
|
|
|
#include <openssl/core_names.h>
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
#include <openssl/params.h>
|
2019-10-04 21:20:48 +08:00
|
|
|
#include "prov/implementations.h"
|
2019-08-30 20:33:37 +08:00
|
|
|
|
2019-10-14 16:11:40 +08:00
|
|
|
static OSSL_OP_keymgmt_importdomparams_fn dsa_importdomparams;
|
2019-10-14 16:37:08 +08:00
|
|
|
static OSSL_OP_keymgmt_exportdomparams_fn dsa_exportdomparams;
|
2019-08-30 20:33:37 +08:00
|
|
|
static OSSL_OP_keymgmt_importkey_fn dsa_importkey;
|
2019-10-14 16:37:08 +08:00
|
|
|
static OSSL_OP_keymgmt_exportkey_fn dsa_exportkey;
|
2019-08-30 20:33:37 +08:00
|
|
|
|
2019-10-14 16:11:40 +08:00
|
|
|
static int params_to_domparams(DSA *dsa, const OSSL_PARAM params[])
|
2019-08-30 20:33:37 +08:00
|
|
|
{
|
2019-10-14 16:11:40 +08:00
|
|
|
const OSSL_PARAM *param_p, *param_q, *param_g;
|
|
|
|
BIGNUM *p = NULL, *q = NULL, *g = NULL;
|
2019-08-30 20:33:37 +08:00
|
|
|
|
|
|
|
if (dsa == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
param_p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_P);
|
|
|
|
param_q = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_Q);
|
|
|
|
param_g = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_G);
|
2019-10-14 16:11:40 +08:00
|
|
|
|
|
|
|
if ((param_p != NULL && !OSSL_PARAM_get_BN(param_p, &p))
|
|
|
|
|| (param_q != NULL && !OSSL_PARAM_get_BN(param_q, &q))
|
|
|
|
|| (param_g != NULL && !OSSL_PARAM_get_BN(param_g, &g)))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (!DSA_set0_pqg(dsa, p, q, g))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
err:
|
|
|
|
BN_free(p);
|
|
|
|
BN_free(q);
|
|
|
|
BN_free(g);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-10-14 16:37:08 +08:00
|
|
|
static int domparams_to_params(DSA *dsa, OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
OSSL_PARAM *p;
|
|
|
|
const BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL;
|
|
|
|
|
|
|
|
if (dsa == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
DSA_get0_pqg(dsa, &dsa_p, &dsa_q, &dsa_g);
|
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_FFC_P)) != NULL
|
|
|
|
&& !OSSL_PARAM_set_BN(p, dsa_p))
|
|
|
|
return 0;
|
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_FFC_Q)) != NULL
|
|
|
|
&& !OSSL_PARAM_set_BN(p, dsa_q))
|
|
|
|
return 0;
|
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_FFC_G)) != NULL
|
|
|
|
&& !OSSL_PARAM_set_BN(p, dsa_g))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-10-14 16:11:40 +08:00
|
|
|
static int params_to_key(DSA *dsa, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
const OSSL_PARAM *param_priv_key, *param_pub_key;
|
|
|
|
BIGNUM *priv_key = NULL, *pub_key = NULL;
|
|
|
|
|
|
|
|
if (dsa == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!params_to_domparams(dsa, params))
|
|
|
|
return 0;
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
param_priv_key =
|
|
|
|
OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_DSA_PRIV_KEY);
|
|
|
|
param_pub_key =
|
|
|
|
OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_DSA_PUB_KEY);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DSA documentation says that a public key must be present if a private key
|
|
|
|
* is.
|
|
|
|
*/
|
|
|
|
if (param_priv_key != NULL && param_pub_key == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2019-10-14 16:11:40 +08:00
|
|
|
if ((param_priv_key != NULL
|
|
|
|
&& !OSSL_PARAM_get_BN(param_priv_key, &priv_key))
|
2019-08-30 20:33:37 +08:00
|
|
|
|| (param_pub_key != NULL
|
|
|
|
&& !OSSL_PARAM_get_BN(param_pub_key, &pub_key)))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (pub_key != NULL && !DSA_set0_key(dsa, pub_key, priv_key))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
err:
|
|
|
|
BN_free(priv_key);
|
|
|
|
BN_free(pub_key);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-10-14 16:37:08 +08:00
|
|
|
static int key_to_params(DSA *dsa, OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
OSSL_PARAM *p;
|
|
|
|
const BIGNUM *priv_key = NULL, *pub_key = NULL;
|
|
|
|
|
|
|
|
if (dsa == NULL)
|
|
|
|
return 0;
|
|
|
|
if (!domparams_to_params(dsa, params))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
DSA_get0_key(dsa, &pub_key, &priv_key);
|
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_DSA_PRIV_KEY)) != NULL
|
|
|
|
&& !OSSL_PARAM_set_BN(p, priv_key))
|
|
|
|
return 0;
|
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_DSA_PUB_KEY)) != NULL
|
|
|
|
&& !OSSL_PARAM_set_BN(p, pub_key))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-10-14 16:11:40 +08:00
|
|
|
static void *dsa_importdomparams(void *provctx, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
DSA *dsa;
|
|
|
|
|
|
|
|
if ((dsa = DSA_new()) == NULL
|
|
|
|
|| !params_to_domparams(dsa, params)) {
|
|
|
|
DSA_free(dsa);
|
|
|
|
dsa = NULL;
|
|
|
|
}
|
|
|
|
return dsa;
|
|
|
|
}
|
|
|
|
|
2019-10-14 16:37:08 +08:00
|
|
|
static int dsa_exportdomparams(void *domparams, OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
DSA *dsa = domparams;
|
|
|
|
|
|
|
|
return dsa != NULL && !domparams_to_params(dsa, params);
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
static void *dsa_importkey(void *provctx, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
DSA *dsa;
|
|
|
|
|
|
|
|
if ((dsa = DSA_new()) == NULL
|
|
|
|
|| !params_to_key(dsa, params)) {
|
|
|
|
DSA_free(dsa);
|
|
|
|
dsa = NULL;
|
|
|
|
}
|
|
|
|
return dsa;
|
|
|
|
}
|
|
|
|
|
2019-10-14 16:37:08 +08:00
|
|
|
static int dsa_exportkey(void *key, OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
DSA *dsa = key;
|
|
|
|
|
|
|
|
return dsa != NULL && !key_to_params(dsa, params);
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
const OSSL_DISPATCH dsa_keymgmt_functions[] = {
|
|
|
|
/*
|
|
|
|
* TODO(3.0) When implementing OSSL_FUNC_KEYMGMT_GENKEY, remember to also
|
|
|
|
* implement OSSL_FUNC_KEYMGMT_EXPORTKEY.
|
|
|
|
*/
|
2019-10-14 16:11:40 +08:00
|
|
|
{ OSSL_FUNC_KEYMGMT_IMPORTDOMPARAMS, (void (*)(void))dsa_importdomparams },
|
2019-10-14 16:37:08 +08:00
|
|
|
{ OSSL_FUNC_KEYMGMT_EXPORTDOMPARAMS, (void (*)(void))dsa_exportdomparams },
|
2019-10-14 16:11:40 +08:00
|
|
|
{ OSSL_FUNC_KEYMGMT_FREEDOMPARAMS, (void (*)(void))DSA_free },
|
2019-08-30 20:33:37 +08:00
|
|
|
{ OSSL_FUNC_KEYMGMT_IMPORTKEY, (void (*)(void))dsa_importkey },
|
2019-10-14 16:37:08 +08:00
|
|
|
{ OSSL_FUNC_KEYMGMT_EXPORTKEY, (void (*)(void))dsa_exportkey },
|
2019-08-30 20:33:37 +08:00
|
|
|
{ OSSL_FUNC_KEYMGMT_FREEKEY, (void (*)(void))DSA_free },
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|