cf37b528e7357e8deb945ce2da51bcd9078a85a8
[openssl.git] / providers / legacy / digests / mdc2_prov.c
1 /*
2  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <openssl/crypto.h>
11 #include <openssl/params.h>
12 #include <openssl/mdc2.h>
13 #include <openssl/core_names.h>
14 #include <openssl/err.h>
15 #include "internal/digestcommon.h"
16 #include "internal/provider_algs.h"
17 #include "internal/providercommonerr.h"
18
19 static OSSL_OP_digest_set_ctx_params_fn mdc2_set_ctx_params;
20 static OSSL_OP_digest_settable_ctx_params_fn mdc2_settable_ctx_params;
21
22 static const OSSL_PARAM known_mdc2_settable_ctx_params[] = {
23     OSSL_PARAM_uint(OSSL_DIGEST_PARAM_PAD_TYPE, NULL),
24     OSSL_PARAM_END
25 };
26
27 static const OSSL_PARAM *mdc2_settable_ctx_params(void)
28 {
29     return known_mdc2_settable_ctx_params;
30 }
31
32 static int mdc2_set_ctx_params(void *vctx, const OSSL_PARAM params[])
33 {
34     const OSSL_PARAM *p;
35     MDC2_CTX *ctx = (MDC2_CTX *)vctx;
36
37     if (ctx != NULL && params != NULL) {
38         p = OSSL_PARAM_locate_const(params, OSSL_DIGEST_PARAM_PAD_TYPE);
39         if (p != NULL && !OSSL_PARAM_get_uint(p, &ctx->pad_type)) {
40             ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER);
41             return 0;
42         }
43         return 1;
44     }
45     return 0; /* Null Parameter */
46 }
47
48 /* mdc2_functions */
49 IMPLEMENT_digest_functions_with_settable_ctx(
50     mdc2, MDC2_CTX, MDC2_BLOCK, MDC2_DIGEST_LENGTH, 0,
51     MDC2_Init, MDC2_Update, MDC2_Final,
52     mdc2_settable_ctx_params, mdc2_set_ctx_params)