Manuel Pégourié-Gonnard | 4772884 | 2022-07-18 13:00:40 +0200 | [diff] [blame] | 1 | /** |
| 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é-Gonnard | de9ffe3 | 2022-07-26 10:20:52 +0200 | [diff] [blame] | 10 | * Note: this internal module will go away when everything becomes based on |
Manuel Pégourié-Gonnard | 4772884 | 2022-07-18 13:00:40 +0200 | [diff] [blame] | 11 | * PSA Crypto; it is a helper for the transition while hash algorithms are |
Manuel Pégourié-Gonnard | de9ffe3 | 2022-07-26 10:20:52 +0200 | [diff] [blame] | 12 | * still represented using mbedtls_md_type_t in most places even when PSA is |
Manuel Pégourié-Gonnard | 4772884 | 2022-07-18 13:00:40 +0200 | [diff] [blame] | 13 | * 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 | */ |
| 46 | unsigned 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 | */ |
| 57 | unsigned 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 | */ |
| 66 | psa_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 | */ |
| 75 | mbedtls_md_type_t mbedtls_hash_info_md_from_psa( psa_algorithm_t psa_alg ); |
| 76 | |
Przemek Stekiel | 2aae040 | 2022-07-29 11:20:07 +0200 | [diff] [blame] | 77 | /** Convert PSA status to MD error code. |
| 78 | * |
| 79 | * \param status PSA status. |
| 80 | * |
| 81 | * \return The corresponding MD error code, |
| 82 | */ |
| 83 | int mbedtls_md_error_from_psa( psa_status_t status ); |
| 84 | |
Manuel Pégourié-Gonnard | 4772884 | 2022-07-18 13:00:40 +0200 | [diff] [blame] | 85 | #endif /* MBEDTLS_HASH_INFO_H */ |