1*b077aed3SPierre Pronchery /*
2*b077aed3SPierre Pronchery * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
3*b077aed3SPierre Pronchery *
4*b077aed3SPierre Pronchery * Licensed under the Apache License 2.0 (the "License"). You may not use
5*b077aed3SPierre Pronchery * this file except in compliance with the License. You can obtain a copy
6*b077aed3SPierre Pronchery * in the file LICENSE in the source distribution or at
7*b077aed3SPierre Pronchery * https://www.openssl.org/source/license.html
8*b077aed3SPierre Pronchery */
9*b077aed3SPierre Pronchery
10*b077aed3SPierre Pronchery #include "internal/deprecated.h"
11*b077aed3SPierre Pronchery
12*b077aed3SPierre Pronchery #include <openssl/rsa.h>
13*b077aed3SPierre Pronchery #include <openssl/core.h>
14*b077aed3SPierre Pronchery #include <openssl/core_names.h>
15*b077aed3SPierre Pronchery #include <openssl/obj_mac.h>
16*b077aed3SPierre Pronchery #include "prov/securitycheck.h"
17*b077aed3SPierre Pronchery #include "internal/nelem.h"
18*b077aed3SPierre Pronchery
19*b077aed3SPierre Pronchery /* Disable the security checks in the default provider */
ossl_securitycheck_enabled(OSSL_LIB_CTX * libctx)20*b077aed3SPierre Pronchery int ossl_securitycheck_enabled(OSSL_LIB_CTX *libctx)
21*b077aed3SPierre Pronchery {
22*b077aed3SPierre Pronchery return 0;
23*b077aed3SPierre Pronchery }
24*b077aed3SPierre Pronchery
ossl_digest_rsa_sign_get_md_nid(OSSL_LIB_CTX * ctx,const EVP_MD * md,ossl_unused int sha1_allowed)25*b077aed3SPierre Pronchery int ossl_digest_rsa_sign_get_md_nid(OSSL_LIB_CTX *ctx, const EVP_MD *md,
26*b077aed3SPierre Pronchery ossl_unused int sha1_allowed)
27*b077aed3SPierre Pronchery {
28*b077aed3SPierre Pronchery int mdnid;
29*b077aed3SPierre Pronchery
30*b077aed3SPierre Pronchery static const OSSL_ITEM name_to_nid[] = {
31*b077aed3SPierre Pronchery { NID_md5, OSSL_DIGEST_NAME_MD5 },
32*b077aed3SPierre Pronchery { NID_md5_sha1, OSSL_DIGEST_NAME_MD5_SHA1 },
33*b077aed3SPierre Pronchery { NID_md2, OSSL_DIGEST_NAME_MD2 },
34*b077aed3SPierre Pronchery { NID_md4, OSSL_DIGEST_NAME_MD4 },
35*b077aed3SPierre Pronchery { NID_mdc2, OSSL_DIGEST_NAME_MDC2 },
36*b077aed3SPierre Pronchery { NID_ripemd160, OSSL_DIGEST_NAME_RIPEMD160 },
37*b077aed3SPierre Pronchery };
38*b077aed3SPierre Pronchery
39*b077aed3SPierre Pronchery mdnid = ossl_digest_get_approved_nid_with_sha1(ctx, md, 1);
40*b077aed3SPierre Pronchery if (mdnid == NID_undef)
41*b077aed3SPierre Pronchery mdnid = ossl_digest_md_to_nid(md, name_to_nid, OSSL_NELEM(name_to_nid));
42*b077aed3SPierre Pronchery return mdnid;
43*b077aed3SPierre Pronchery }
44