blob: 47da934deebaada54245664d2bf52609f4c02ebe [file] [log] [blame]
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +02001/**
2 * Hash information that's independent from the crypto implementation.
3 *
4 * This can be used by:
5 * - code based on PSA
6 * - code based on the legacy API
7 * - code based on either of them depending on MBEDTLS_USE_PSA_CRYPTO
8 * - code based on either of them depending on what's available
9 *
Manuel Pégourié-Gonnardde9ffe32022-07-26 10:20:52 +020010 * Note: this internal module will go away when everything becomes based on
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020011 * PSA Crypto; it is a helper for the transition while hash algorithms are
Manuel Pégourié-Gonnardde9ffe32022-07-26 10:20:52 +020012 * still represented using mbedtls_md_type_t in most places even when PSA is
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020013 * used for the actual crypto computations.
14 *
15 * Copyright The Mbed TLS Contributors
16 * SPDX-License-Identifier: Apache-2.0
17 *
18 * Licensed under the Apache License, Version 2.0 (the "License"); you may
19 * not use this file except in compliance with the License.
20 * You may obtain a copy of the License at
21 *
22 * http://www.apache.org/licenses/LICENSE-2.0
23 *
24 * Unless required by applicable law or agreed to in writing, software
25 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
26 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
27 * See the License for the specific language governing permissions and
28 * limitations under the License.
29 */
30#ifndef MBEDTLS_HASH_INFO_H
31#define MBEDTLS_HASH_INFO_H
32
33#include "common.h"
34
35#include "mbedtls/md.h"
36#include "psa/crypto.h"
37
Przemek Stekielc3f27672022-09-06 13:06:28 +020038/** \def MBEDTLS_HASH_MAX_SIZE
39 *
40 * Maximum size of a hash based on configuration.
41 */
42#if defined(MBEDTLS_MD_C) && ( \
43 !defined(MBEDTLS_PSA_CRYPTO_C) || \
Gilles Peskine449bd832023-01-11 14:50:10 +010044 MBEDTLS_MD_MAX_SIZE >= PSA_HASH_MAX_SIZE)
Przemek Stekielc3f27672022-09-06 13:06:28 +020045#define MBEDTLS_HASH_MAX_SIZE MBEDTLS_MD_MAX_SIZE
46#elif defined(MBEDTLS_PSA_CRYPTO_C) && ( \
47 !defined(MBEDTLS_MD_C) || \
Gilles Peskine449bd832023-01-11 14:50:10 +010048 PSA_HASH_MAX_SIZE >= MBEDTLS_MD_MAX_SIZE)
Przemek Stekielc3f27672022-09-06 13:06:28 +020049#define MBEDTLS_HASH_MAX_SIZE PSA_HASH_MAX_SIZE
50#endif
51
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020052/** Get the output length of the given hash type from its MD type.
53 *
54 * \note To get the output length from the PSA alg, use \c PSA_HASH_LENGTH().
55 *
56 * \param md_type The hash MD type.
57 *
58 * \return The output length in bytes, or 0 if not known.
59 */
Gilles Peskine449bd832023-01-11 14:50:10 +010060unsigned char mbedtls_hash_info_get_size(mbedtls_md_type_t md_type);
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020061
62/** Get the block size of the given hash type from its MD type.
63 *
64 * \note To get the output length from the PSA alg, use
65 * \c PSA_HASH_BLOCK_LENGTH().
66 *
67 * \param md_type The hash MD type.
68 *
69 * \return The block size in bytes, or 0 if not known.
70 */
Gilles Peskine449bd832023-01-11 14:50:10 +010071unsigned char mbedtls_hash_info_get_block_size(mbedtls_md_type_t md_type);
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020072
73/** Get the PSA alg from the MD type.
74 *
75 * \param md_type The hash MD type.
76 *
77 * \return The corresponding PSA algorithm identifier,
78 * or PSA_ALG_NONE if not known.
79 */
Gilles Peskine449bd832023-01-11 14:50:10 +010080psa_algorithm_t mbedtls_hash_info_psa_from_md(mbedtls_md_type_t md_type);
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020081
82/** Get the MD type alg from the PSA algorithm identifier.
83 *
84 * \param psa_alg The PSA hash algorithm.
85 *
86 * \return The corresponding MD type,
87 * or MBEDTLS_MD_NONE if not known.
88 */
Gilles Peskine449bd832023-01-11 14:50:10 +010089mbedtls_md_type_t mbedtls_hash_info_md_from_psa(psa_algorithm_t psa_alg);
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020090
Przemek Stekiel2aae0402022-07-29 11:20:07 +020091/** Convert PSA status to MD error code.
92 *
93 * \param status PSA status.
94 *
95 * \return The corresponding MD error code,
96 */
Gilles Peskine449bd832023-01-11 14:50:10 +010097int mbedtls_md_error_from_psa(psa_status_t status);
Przemek Stekiel2aae0402022-07-29 11:20:07 +020098
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020099#endif /* MBEDTLS_HASH_INFO_H */