2019-04-11 18:27:59 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-04-11 18:27:59 +08: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-09 09:18:58 +08:00
|
|
|
/*
|
|
|
|
* MDC2 low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2019-04-11 18:27:59 +08:00
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/params.h>
|
|
|
|
#include <openssl/mdc2.h>
|
|
|
|
#include <openssl/core_names.h>
|
2019-08-20 07:07:12 +08:00
|
|
|
#include <openssl/err.h>
|
2019-10-04 18:30:33 +08:00
|
|
|
#include "prov/digestcommon.h"
|
2019-10-04 21:20:48 +08:00
|
|
|
#include "prov/implementations.h"
|
2019-10-04 21:25:59 +08:00
|
|
|
#include "prov/providercommonerr.h"
|
2019-04-11 18:27:59 +08:00
|
|
|
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_digest_set_ctx_params_fn mdc2_set_ctx_params;
|
|
|
|
static OSSL_FUNC_digest_settable_ctx_params_fn mdc2_settable_ctx_params;
|
2019-04-11 18:27:59 +08:00
|
|
|
|
2019-08-12 21:03:24 +08:00
|
|
|
static const OSSL_PARAM known_mdc2_settable_ctx_params[] = {
|
2019-09-05 09:23:57 +08:00
|
|
|
OSSL_PARAM_uint(OSSL_DIGEST_PARAM_PAD_TYPE, NULL),
|
2019-08-12 21:03:24 +08:00
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
2020-08-07 11:20:18 +08:00
|
|
|
static const OSSL_PARAM *mdc2_settable_ctx_params(ossl_unused void *provctx)
|
2019-08-12 21:03:24 +08:00
|
|
|
{
|
|
|
|
return known_mdc2_settable_ctx_params;
|
|
|
|
}
|
|
|
|
|
2019-08-16 15:04:29 +08:00
|
|
|
static int mdc2_set_ctx_params(void *vctx, const OSSL_PARAM params[])
|
2019-04-11 18:27:59 +08:00
|
|
|
{
|
|
|
|
const OSSL_PARAM *p;
|
|
|
|
MDC2_CTX *ctx = (MDC2_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx != NULL && params != NULL) {
|
2019-06-24 12:43:55 +08:00
|
|
|
p = OSSL_PARAM_locate_const(params, OSSL_DIGEST_PARAM_PAD_TYPE);
|
2019-09-05 09:23:57 +08:00
|
|
|
if (p != NULL && !OSSL_PARAM_get_uint(p, &ctx->pad_type)) {
|
2019-08-20 07:07:12 +08:00
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER);
|
2019-04-11 18:27:59 +08:00
|
|
|
return 0;
|
2019-08-20 07:07:12 +08:00
|
|
|
}
|
2019-04-11 18:27:59 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0; /* Null Parameter */
|
|
|
|
}
|
|
|
|
|
2019-08-20 07:07:12 +08:00
|
|
|
/* mdc2_functions */
|
|
|
|
IMPLEMENT_digest_functions_with_settable_ctx(
|
|
|
|
mdc2, MDC2_CTX, MDC2_BLOCK, MDC2_DIGEST_LENGTH, 0,
|
|
|
|
MDC2_Init, MDC2_Update, MDC2_Final,
|
|
|
|
mdc2_settable_ctx_params, mdc2_set_ctx_params)
|