Path: blob/main/crypto/openssl/providers/common/digest_to_nid.c
48262 views
/*1* Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#include "internal/deprecated.h"1011#include <openssl/objects.h>12#include <openssl/core_names.h>13#include <openssl/evp.h>14#include <openssl/core.h>15#include "prov/securitycheck.h"16#include "internal/nelem.h"1718/*19* Internal library code deals with NIDs, so we need to translate from a name.20* We do so using EVP_MD_is_a(), and therefore need a name to NID map.21*/22int ossl_digest_md_to_nid(const EVP_MD *md, const OSSL_ITEM *it, size_t it_len)23{24size_t i;2526if (md == NULL)27return NID_undef;2829for (i = 0; i < it_len; i++)30if (EVP_MD_is_a(md, it[i].ptr))31return (int)it[i].id;32return NID_undef;33}3435/*36* Retrieve one of the FIPS approved hash algorithms by nid.37* See FIPS 180-4 "Secure Hash Standard" and FIPS 202 - SHA-3.38*/39int ossl_digest_get_approved_nid(const EVP_MD *md)40{41/* TODO: FIPS 180-5 RFC 8692 RFC 8702 allow SHAKE */42static const OSSL_ITEM name_to_nid[] = {43{ NID_sha1, OSSL_DIGEST_NAME_SHA1 },44{ NID_sha224, OSSL_DIGEST_NAME_SHA2_224 },45{ NID_sha256, OSSL_DIGEST_NAME_SHA2_256 },46{ NID_sha384, OSSL_DIGEST_NAME_SHA2_384 },47{ NID_sha512, OSSL_DIGEST_NAME_SHA2_512 },48{ NID_sha512_224, OSSL_DIGEST_NAME_SHA2_512_224 },49{ NID_sha512_256, OSSL_DIGEST_NAME_SHA2_512_256 },50{ NID_sha3_224, OSSL_DIGEST_NAME_SHA3_224 },51{ NID_sha3_256, OSSL_DIGEST_NAME_SHA3_256 },52{ NID_sha3_384, OSSL_DIGEST_NAME_SHA3_384 },53{ NID_sha3_512, OSSL_DIGEST_NAME_SHA3_512 },54};5556return ossl_digest_md_to_nid(md, name_to_nid, OSSL_NELEM(name_to_nid));57}585960