blob: 54f5f7c2fd51222059c0af221ae044dcc493be8d [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
38/** Get the output length of the given hash type from its MD type.
39 *
40 * \note To get the output length from the PSA alg, use \c PSA_HASH_LENGTH().
41 *
42 * \param md_type The hash MD type.
43 *
44 * \return The output length in bytes, or 0 if not known.
45 */
46unsigned char mbedtls_hash_info_get_size( mbedtls_md_type_t md_type );
47
48/** Get the block size of the given hash type from its MD type.
49 *
50 * \note To get the output length from the PSA alg, use
51 * \c PSA_HASH_BLOCK_LENGTH().
52 *
53 * \param md_type The hash MD type.
54 *
55 * \return The block size in bytes, or 0 if not known.
56 */
57unsigned char mbedtls_hash_info_get_block_size( mbedtls_md_type_t md_type );
58
59/** Get the PSA alg from the MD type.
60 *
61 * \param md_type The hash MD type.
62 *
63 * \return The corresponding PSA algorithm identifier,
64 * or PSA_ALG_NONE if not known.
65 */
66psa_algorithm_t mbedtls_hash_info_psa_from_md( mbedtls_md_type_t md_type );
67
68/** Get the MD type alg from the PSA algorithm identifier.
69 *
70 * \param psa_alg The PSA hash algorithm.
71 *
72 * \return The corresponding MD type,
73 * or MBEDTLS_MD_NONE if not known.
74 */
75mbedtls_md_type_t mbedtls_hash_info_md_from_psa( psa_algorithm_t psa_alg );
76
Przemek Stekiel2aae0402022-07-29 11:20:07 +020077/** Convert PSA status to MD error code.
78 *
79 * \param status PSA status.
80 *
81 * \return The corresponding MD error code,
82 */
83int mbedtls_md_error_from_psa( psa_status_t status );
84
Manuel Pégourié-Gonnard47728842022-07-18 13:00:40 +020085#endif /* MBEDTLS_HASH_INFO_H */