2019-11-18 02:01:13 +01:00
|
|
|
/*
|
2020-04-23 13:55:52 +01:00
|
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-11-18 02:01:13 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-01-30 07:23:39 +10:00
|
|
|
/*
|
|
|
|
* DSA low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2020-06-21 01:21:19 +02:00
|
|
|
#include <openssl/core_dispatch.h>
|
2019-11-18 02:01:13 +01:00
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/pem.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
#include <openssl/types.h>
|
|
|
|
#include <openssl/params.h>
|
|
|
|
#include "prov/bio.h"
|
|
|
|
#include "prov/implementations.h"
|
2020-05-06 12:29:57 +01:00
|
|
|
#include "prov/provider_ctx.h"
|
2020-08-16 21:25:08 +02:00
|
|
|
#include "encoder_local.h"
|
2019-11-18 02:01:13 +01:00
|
|
|
|
2020-08-21 11:14:34 +10:00
|
|
|
#define DSA_SELECT_PUBLIC_IMPORTABLE \
|
|
|
|
(OSSL_KEYMGMT_SELECT_PUBLIC_KEY | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS)
|
|
|
|
|
2020-08-16 21:25:08 +02:00
|
|
|
static OSSL_FUNC_encoder_newctx_fn dsa_pub_newctx;
|
|
|
|
static OSSL_FUNC_encoder_freectx_fn dsa_pub_freectx;
|
|
|
|
static OSSL_FUNC_encoder_encode_data_fn dsa_pub_der_data;
|
|
|
|
static OSSL_FUNC_encoder_encode_object_fn dsa_pub_der;
|
|
|
|
static OSSL_FUNC_encoder_encode_data_fn dsa_pub_pem_data;
|
|
|
|
static OSSL_FUNC_encoder_encode_object_fn dsa_pub_pem;
|
|
|
|
static OSSL_FUNC_encoder_encode_data_fn dsa_pub_print_data;
|
|
|
|
static OSSL_FUNC_encoder_encode_object_fn dsa_pub_print;
|
2019-11-18 02:01:13 +01:00
|
|
|
|
|
|
|
/* Public key : context */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* There's no specific implementation context, so we use the provider context
|
|
|
|
*/
|
|
|
|
static void *dsa_pub_newctx(void *provctx)
|
|
|
|
{
|
|
|
|
return provctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dsa_pub_freectx(void *ctx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Public key : DER */
|
2020-05-06 12:29:57 +01:00
|
|
|
static int dsa_pub_der_data(void *ctx, const OSSL_PARAM params[],
|
|
|
|
OSSL_CORE_BIO *out,
|
2019-11-18 02:01:13 +01:00
|
|
|
OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
|
|
|
|
{
|
2020-06-21 01:19:16 +02:00
|
|
|
OSSL_FUNC_keymgmt_new_fn *dsa_new = ossl_prov_get_keymgmt_dsa_new();
|
|
|
|
OSSL_FUNC_keymgmt_free_fn *dsa_free = ossl_prov_get_keymgmt_dsa_free();
|
|
|
|
OSSL_FUNC_keymgmt_import_fn *dsa_import = ossl_prov_get_keymgmt_dsa_import();
|
2019-11-18 02:01:13 +01:00
|
|
|
int ok = 0;
|
|
|
|
|
2020-02-03 16:36:24 +01:00
|
|
|
if (dsa_import != NULL) {
|
|
|
|
DSA *dsa;
|
2019-11-18 02:01:13 +01:00
|
|
|
|
2020-02-03 16:36:24 +01:00
|
|
|
/* ctx == provctx */
|
|
|
|
if ((dsa = dsa_new(ctx)) != NULL
|
2020-08-21 11:14:34 +10:00
|
|
|
&& dsa_import(dsa, DSA_SELECT_PUBLIC_IMPORTABLE, params)
|
2020-02-03 16:36:24 +01:00
|
|
|
&& dsa_pub_der(ctx, dsa, out, cb, cbarg))
|
|
|
|
ok = 1;
|
|
|
|
dsa_free(dsa);
|
2019-11-18 02:01:13 +01:00
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-05-06 12:29:57 +01:00
|
|
|
static int dsa_pub_der(void *ctx, void *dsa, OSSL_CORE_BIO *cout,
|
2019-11-18 02:01:13 +01:00
|
|
|
OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* TODO(v3.0) implement setting save_parameters, see dsa_pub_encode()
|
|
|
|
* in crypto/dsa/dsa_ameth.c
|
|
|
|
*/
|
|
|
|
int save_parameters = 1;
|
2020-05-06 12:29:57 +01:00
|
|
|
BIO *out = bio_new_from_core_bio(ctx, cout);
|
|
|
|
int ret;
|
2019-11-18 02:01:13 +01:00
|
|
|
|
2020-05-06 12:29:57 +01:00
|
|
|
if (out == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret =
|
2019-11-18 02:01:13 +01:00
|
|
|
save_parameters
|
|
|
|
? ossl_prov_write_pub_der_from_obj(out, dsa, EVP_PKEY_DSA,
|
|
|
|
ossl_prov_prepare_all_dsa_params,
|
|
|
|
ossl_prov_dsa_pub_to_der)
|
|
|
|
: ossl_prov_write_pub_der_from_obj(out, dsa, EVP_PKEY_DSA,
|
|
|
|
ossl_prov_prepare_dsa_params,
|
|
|
|
ossl_prov_dsa_pub_to_der);
|
|
|
|
|
2020-05-06 12:29:57 +01:00
|
|
|
BIO_free(out);
|
|
|
|
|
|
|
|
return ret;
|
2019-11-18 02:01:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Public key : PEM */
|
2020-05-06 12:29:57 +01:00
|
|
|
static int dsa_pub_pem_data(void *ctx, const OSSL_PARAM params[],
|
|
|
|
OSSL_CORE_BIO *out,
|
2019-11-18 02:01:13 +01:00
|
|
|
OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
|
|
|
|
{
|
2020-06-21 01:19:16 +02:00
|
|
|
OSSL_FUNC_keymgmt_new_fn *dsa_new = ossl_prov_get_keymgmt_dsa_new();
|
|
|
|
OSSL_FUNC_keymgmt_free_fn *dsa_free = ossl_prov_get_keymgmt_dsa_free();
|
|
|
|
OSSL_FUNC_keymgmt_import_fn *dsa_import = ossl_prov_get_keymgmt_dsa_import();
|
2019-11-18 02:01:13 +01:00
|
|
|
int ok = 0;
|
|
|
|
|
2020-02-03 16:36:24 +01:00
|
|
|
if (dsa_import != NULL) {
|
|
|
|
DSA *dsa;
|
2019-11-18 02:01:13 +01:00
|
|
|
|
2020-02-03 16:36:24 +01:00
|
|
|
/* ctx == provctx */
|
|
|
|
if ((dsa = dsa_new(ctx)) != NULL
|
2020-08-21 11:14:34 +10:00
|
|
|
&& dsa_import(dsa, DSA_SELECT_PUBLIC_IMPORTABLE, params)
|
2020-02-03 16:36:24 +01:00
|
|
|
&& dsa_pub_pem(ctx, dsa, out, cb, cbarg))
|
|
|
|
ok = 1;
|
|
|
|
dsa_free(dsa);
|
2019-11-18 02:01:13 +01:00
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-05-06 12:29:57 +01:00
|
|
|
static int dsa_pub_pem(void *ctx, void *dsa, OSSL_CORE_BIO *cout,
|
2019-11-18 02:01:13 +01:00
|
|
|
OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
|
|
|
|
{
|
2020-05-06 12:29:57 +01:00
|
|
|
BIO *out = bio_new_from_core_bio(ctx, cout);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (out == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = ossl_prov_write_pub_pem_from_obj(out, dsa, EVP_PKEY_DSA,
|
|
|
|
ossl_prov_prepare_dsa_params,
|
|
|
|
ossl_prov_dsa_pub_to_der);
|
|
|
|
|
|
|
|
BIO_free(out);
|
|
|
|
|
|
|
|
return ret;
|
2019-11-18 02:01:13 +01:00
|
|
|
}
|
|
|
|
|
2020-05-06 12:29:57 +01:00
|
|
|
static int dsa_pub_print_data(void *ctx, const OSSL_PARAM params[],
|
|
|
|
OSSL_CORE_BIO *out,
|
2019-11-18 02:01:13 +01:00
|
|
|
OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
|
|
|
|
{
|
2020-06-21 01:19:16 +02:00
|
|
|
OSSL_FUNC_keymgmt_new_fn *dsa_new = ossl_prov_get_keymgmt_dsa_new();
|
|
|
|
OSSL_FUNC_keymgmt_free_fn *dsa_free = ossl_prov_get_keymgmt_dsa_free();
|
|
|
|
OSSL_FUNC_keymgmt_import_fn *dsa_import = ossl_prov_get_keymgmt_dsa_import();
|
2019-11-18 02:01:13 +01:00
|
|
|
int ok = 0;
|
|
|
|
|
2020-02-03 16:36:24 +01:00
|
|
|
if (dsa_import != NULL) {
|
|
|
|
DSA *dsa;
|
2019-11-18 02:01:13 +01:00
|
|
|
|
2020-02-03 16:36:24 +01:00
|
|
|
/* ctx == provctx */
|
|
|
|
if ((dsa = dsa_new(ctx)) != NULL
|
2020-08-21 11:14:34 +10:00
|
|
|
&& dsa_import(dsa, DSA_SELECT_PUBLIC_IMPORTABLE, params)
|
2020-02-03 16:36:24 +01:00
|
|
|
&& dsa_pub_print(ctx, dsa, out, cb, cbarg))
|
|
|
|
ok = 1;
|
|
|
|
dsa_free(dsa);
|
2019-11-18 02:01:13 +01:00
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-05-06 12:29:57 +01:00
|
|
|
static int dsa_pub_print(void *ctx, void *dsa, OSSL_CORE_BIO *cout,
|
2019-11-18 02:01:13 +01:00
|
|
|
OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
|
|
|
|
{
|
2020-05-06 12:29:57 +01:00
|
|
|
BIO *out = bio_new_from_core_bio(ctx, cout);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (out == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2020-08-20 09:13:28 +10:00
|
|
|
ret = ossl_prov_print_dsa(out, dsa, dsa_print_pub);
|
2020-05-06 12:29:57 +01:00
|
|
|
BIO_free(out);
|
|
|
|
|
|
|
|
return ret;
|
2019-11-18 02:01:13 +01:00
|
|
|
}
|
|
|
|
|
2020-08-16 21:25:08 +02:00
|
|
|
const OSSL_DISPATCH dsa_pub_der_encoder_functions[] = {
|
|
|
|
{ OSSL_FUNC_ENCODER_NEWCTX, (void (*)(void))dsa_pub_newctx },
|
|
|
|
{ OSSL_FUNC_ENCODER_FREECTX, (void (*)(void))dsa_pub_freectx },
|
|
|
|
{ OSSL_FUNC_ENCODER_ENCODE_DATA, (void (*)(void))dsa_pub_der_data },
|
|
|
|
{ OSSL_FUNC_ENCODER_ENCODE_OBJECT, (void (*)(void))dsa_pub_der },
|
2019-11-18 02:01:13 +01:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
2020-08-16 21:25:08 +02:00
|
|
|
const OSSL_DISPATCH dsa_pub_pem_encoder_functions[] = {
|
|
|
|
{ OSSL_FUNC_ENCODER_NEWCTX, (void (*)(void))dsa_pub_newctx },
|
|
|
|
{ OSSL_FUNC_ENCODER_FREECTX, (void (*)(void))dsa_pub_freectx },
|
|
|
|
{ OSSL_FUNC_ENCODER_ENCODE_DATA, (void (*)(void))dsa_pub_pem_data },
|
|
|
|
{ OSSL_FUNC_ENCODER_ENCODE_OBJECT, (void (*)(void))dsa_pub_pem },
|
2019-11-18 02:01:13 +01:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
2020-08-16 21:25:08 +02:00
|
|
|
const OSSL_DISPATCH dsa_pub_text_encoder_functions[] = {
|
|
|
|
{ OSSL_FUNC_ENCODER_NEWCTX, (void (*)(void))dsa_pub_newctx },
|
|
|
|
{ OSSL_FUNC_ENCODER_FREECTX, (void (*)(void))dsa_pub_freectx },
|
|
|
|
{ OSSL_FUNC_ENCODER_ENCODE_OBJECT, (void (*)(void))dsa_pub_print },
|
|
|
|
{ OSSL_FUNC_ENCODER_ENCODE_DATA,
|
2019-11-18 02:01:13 +01:00
|
|
|
(void (*)(void))dsa_pub_print_data },
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|