Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 1 | /** |
| 2 | * \file cmac.h |
| 3 | * |
Rose Zadik | 8c15493 | 2018-03-27 10:45:16 +0100 | [diff] [blame] | 4 | * \brief This file contains CMAC definitions and functions. |
| 5 | * |
| 6 | * The Cipher-based Message Authentication Code (CMAC) Mode for |
| 7 | * Authentication is defined in <em>RFC-4493: The AES-CMAC Algorithm</em>. |
Gilles Peskine | 16bb83c | 2023-06-14 17:42:26 +0200 | [diff] [blame] | 8 | * It is supported with AES and DES. |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 9 | */ |
| 10 | /* |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 11 | * Copyright The Mbed TLS Contributors |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 12 | * SPDX-License-Identifier: Apache-2.0 |
| 13 | * |
| 14 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 15 | * not use this file except in compliance with the License. |
| 16 | * You may obtain a copy of the License at |
| 17 | * |
| 18 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 19 | * |
| 20 | * Unless required by applicable law or agreed to in writing, software |
| 21 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 22 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 23 | * See the License for the specific language governing permissions and |
| 24 | * limitations under the License. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 25 | */ |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 26 | |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 27 | #ifndef MBEDTLS_CMAC_H |
| 28 | #define MBEDTLS_CMAC_H |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 29 | #include "mbedtls/private_access.h" |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 30 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 31 | #include "mbedtls/build_info.h" |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 32 | |
Jaeden Amero | c49fbbf | 2019-07-04 20:01:14 +0100 | [diff] [blame] | 33 | #include "mbedtls/cipher.h" |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 34 | |
| 35 | #ifdef __cplusplus |
| 36 | extern "C" { |
| 37 | #endif |
| 38 | |
Simon Butcher | 69283e5 | 2016-10-06 12:49:58 +0100 | [diff] [blame] | 39 | #define MBEDTLS_AES_BLOCK_SIZE 16 |
| 40 | #define MBEDTLS_DES3_BLOCK_SIZE 8 |
| 41 | |
Gilles Peskine | 16bb83c | 2023-06-14 17:42:26 +0200 | [diff] [blame] | 42 | /* We don't support Camellia or ARIA in this module */ |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 43 | #if defined(MBEDTLS_AES_C) |
Gilles Peskine | 7282a9e | 2023-06-14 17:49:02 +0200 | [diff] [blame] | 44 | #define MBEDTLS_CMAC_MAX_BLOCK_SIZE 16 /**< The longest block used by CMAC is that of AES. */ |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 45 | #else |
Gilles Peskine | 7282a9e | 2023-06-14 17:49:02 +0200 | [diff] [blame] | 46 | #define MBEDTLS_CMAC_MAX_BLOCK_SIZE 8 /**< The longest block used by CMAC is that of 3DES. */ |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 47 | #endif |
| 48 | |
Gilles Peskine | c453e2e | 2023-06-14 17:54:38 +0200 | [diff] [blame^] | 49 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
Gilles Peskine | 7282a9e | 2023-06-14 17:49:02 +0200 | [diff] [blame] | 50 | /** The longest block supported by the cipher module. |
| 51 | * |
| 52 | * \deprecated |
| 53 | * For the maximum block size of a cipher supported by the CMAC module, |
| 54 | * use #MBEDTLS_CMAC_MAX_BLOCK_SIZE. |
| 55 | * For the maximum block size of a cipher supported by the cipher module, |
| 56 | * use #MBEDTLS_MAX_BLOCK_LENGTH. |
| 57 | */ |
| 58 | /* Before Mbed TLS 3.5, this was the maximum block size supported by the CMAC |
| 59 | * module, so it didn't take Camellia or ARIA into account. Since the name |
| 60 | * of the macro doesn't even convey "CMAC", this was misleading. Now the size |
| 61 | * is sufficient for any cipher, but the name is defined in cmac.h for |
| 62 | * backward compatibility. */ |
| 63 | #define MBEDTLS_CIPHER_BLKSIZE_MAX MBEDTLS_MAX_BLOCK_LENGTH |
Gilles Peskine | c453e2e | 2023-06-14 17:54:38 +0200 | [diff] [blame^] | 64 | #endif /* MBEDTLS_DEPRECATED_REMOVED */ |
Gilles Peskine | 7282a9e | 2023-06-14 17:49:02 +0200 | [diff] [blame] | 65 | |
Steven Cooreman | 6334277 | 2017-04-04 11:47:16 +0200 | [diff] [blame] | 66 | #if !defined(MBEDTLS_CMAC_ALT) |
| 67 | |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 68 | /** |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 69 | * The CMAC context structure. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 70 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 71 | struct mbedtls_cmac_context_t { |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 72 | /** The internal state of the CMAC algorithm. */ |
Gilles Peskine | 9e930e2 | 2023-06-14 17:52:54 +0200 | [diff] [blame] | 73 | unsigned char MBEDTLS_PRIVATE(state)[MBEDTLS_CMAC_MAX_BLOCK_SIZE]; |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 74 | |
Andres AG | a592dcc | 2016-10-06 15:23:39 +0100 | [diff] [blame] | 75 | /** Unprocessed data - either data that was not block aligned and is still |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 76 | * pending processing, or the final block. */ |
Gilles Peskine | 9e930e2 | 2023-06-14 17:52:54 +0200 | [diff] [blame] | 77 | unsigned char MBEDTLS_PRIVATE(unprocessed_block)[MBEDTLS_CMAC_MAX_BLOCK_SIZE]; |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 78 | |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 79 | /** The length of data pending processing. */ |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 80 | size_t MBEDTLS_PRIVATE(unprocessed_len); |
Simon Butcher | 8308a44 | 2016-10-05 15:12:59 +0100 | [diff] [blame] | 81 | }; |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 82 | |
Ron Eldor | 4e6d55d | 2018-02-07 16:36:15 +0200 | [diff] [blame] | 83 | #else /* !MBEDTLS_CMAC_ALT */ |
| 84 | #include "cmac_alt.h" |
| 85 | #endif /* !MBEDTLS_CMAC_ALT */ |
| 86 | |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 87 | /** |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 88 | * \brief This function starts a new CMAC computation |
| 89 | * by setting the CMAC key, and preparing to authenticate |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 90 | * the input data. |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 91 | * It must be called with an initialized cipher context. |
| 92 | * |
| 93 | * Once this function has completed, data can be supplied |
| 94 | * to the CMAC computation by calling |
| 95 | * mbedtls_cipher_cmac_update(). |
| 96 | * |
| 97 | * To start a CMAC computation using the same key as a previous |
| 98 | * CMAC computation, use mbedtls_cipher_cmac_finish(). |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 99 | * |
Steven Cooreman | c338cef | 2021-04-26 11:24:44 +0200 | [diff] [blame] | 100 | * \note When the CMAC implementation is supplied by an alternate |
| 101 | * implementation (through #MBEDTLS_CMAC_ALT), some ciphers |
| 102 | * may not be supported by that implementation, and thus |
| 103 | * return an error. Alternate implementations must support |
| 104 | * AES-128 and AES-256, and may support AES-192 and 3DES. |
| 105 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 106 | * \param ctx The cipher context used for the CMAC operation, initialized |
Rose Zadik | 8c15493 | 2018-03-27 10:45:16 +0100 | [diff] [blame] | 107 | * as one of the following types: MBEDTLS_CIPHER_AES_128_ECB, |
| 108 | * MBEDTLS_CIPHER_AES_192_ECB, MBEDTLS_CIPHER_AES_256_ECB, |
| 109 | * or MBEDTLS_CIPHER_DES_EDE3_ECB. |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 110 | * \param key The CMAC key. |
| 111 | * \param keybits The length of the CMAC key in bits. |
| 112 | * Must be supported by the cipher. |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 113 | * |
Rose Zadik | c138bb7 | 2018-04-16 11:11:25 +0100 | [diff] [blame] | 114 | * \return \c 0 on success. |
| 115 | * \return A cipher-specific error code on failure. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 116 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 117 | int mbedtls_cipher_cmac_starts(mbedtls_cipher_context_t *ctx, |
| 118 | const unsigned char *key, size_t keybits); |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 119 | |
| 120 | /** |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 121 | * \brief This function feeds an input buffer into an ongoing CMAC |
| 122 | * computation. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 123 | * |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 124 | * The CMAC computation must have previously been started |
| 125 | * by calling mbedtls_cipher_cmac_starts() or |
| 126 | * mbedtls_cipher_cmac_reset(). |
| 127 | * |
| 128 | * Call this function as many times as needed to input the |
| 129 | * data to be authenticated. |
| 130 | * Once all of the required data has been input, |
| 131 | * call mbedtls_cipher_cmac_finish() to obtain the result |
| 132 | * of the CMAC operation. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 133 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 134 | * \param ctx The cipher context used for the CMAC operation. |
| 135 | * \param input The buffer holding the input data. |
| 136 | * \param ilen The length of the input data. |
| 137 | * |
Rose Zadik | c138bb7 | 2018-04-16 11:11:25 +0100 | [diff] [blame] | 138 | * \return \c 0 on success. |
| 139 | * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA |
Rose Zadik | 8c15493 | 2018-03-27 10:45:16 +0100 | [diff] [blame] | 140 | * if parameter verification fails. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 141 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 142 | int mbedtls_cipher_cmac_update(mbedtls_cipher_context_t *ctx, |
| 143 | const unsigned char *input, size_t ilen); |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 144 | |
| 145 | /** |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 146 | * \brief This function finishes an ongoing CMAC operation, and |
| 147 | * writes the result to the output buffer. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 148 | * |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 149 | * It should be followed either by |
| 150 | * mbedtls_cipher_cmac_reset(), which starts another CMAC |
| 151 | * operation with the same key, or mbedtls_cipher_free(), |
| 152 | * which clears the cipher context. |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 153 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 154 | * \param ctx The cipher context used for the CMAC operation. |
| 155 | * \param output The output buffer for the CMAC checksum result. |
| 156 | * |
Rose Zadik | c138bb7 | 2018-04-16 11:11:25 +0100 | [diff] [blame] | 157 | * \return \c 0 on success. |
| 158 | * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 159 | * if parameter verification fails. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 160 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 161 | int mbedtls_cipher_cmac_finish(mbedtls_cipher_context_t *ctx, |
| 162 | unsigned char *output); |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 163 | |
| 164 | /** |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 165 | * \brief This function starts a new CMAC operation with the same |
| 166 | * key as the previous one. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 167 | * |
David Horstmann | 3d5dfa5 | 2021-12-06 18:58:02 +0000 | [diff] [blame] | 168 | * It should be called after finishing the previous CMAC |
| 169 | * operation with mbedtls_cipher_cmac_finish(). |
| 170 | * After calling this function, |
| 171 | * call mbedtls_cipher_cmac_update() to supply the new |
| 172 | * CMAC operation with data. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 173 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 174 | * \param ctx The cipher context used for the CMAC operation. |
| 175 | * |
Rose Zadik | c138bb7 | 2018-04-16 11:11:25 +0100 | [diff] [blame] | 176 | * \return \c 0 on success. |
| 177 | * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 178 | * if parameter verification fails. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 179 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 180 | int mbedtls_cipher_cmac_reset(mbedtls_cipher_context_t *ctx); |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 181 | |
| 182 | /** |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 183 | * \brief This function calculates the full generic CMAC |
| 184 | * on the input buffer with the provided key. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 185 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 186 | * The function allocates the context, performs the |
| 187 | * calculation, and frees the context. |
Simon Butcher | 327398a | 2016-10-05 14:09:11 +0100 | [diff] [blame] | 188 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 189 | * The CMAC result is calculated as |
| 190 | * output = generic CMAC(cmac key, input buffer). |
| 191 | * |
Steven Cooreman | c338cef | 2021-04-26 11:24:44 +0200 | [diff] [blame] | 192 | * \note When the CMAC implementation is supplied by an alternate |
| 193 | * implementation (through #MBEDTLS_CMAC_ALT), some ciphers |
| 194 | * may not be supported by that implementation, and thus |
| 195 | * return an error. Alternate implementations must support |
| 196 | * AES-128 and AES-256, and may support AES-192 and 3DES. |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 197 | * |
| 198 | * \param cipher_info The cipher information. |
| 199 | * \param key The CMAC key. |
| 200 | * \param keylen The length of the CMAC key in bits. |
| 201 | * \param input The buffer holding the input data. |
| 202 | * \param ilen The length of the input data. |
| 203 | * \param output The buffer for the generic CMAC result. |
| 204 | * |
Rose Zadik | c138bb7 | 2018-04-16 11:11:25 +0100 | [diff] [blame] | 205 | * \return \c 0 on success. |
| 206 | * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 207 | * if parameter verification fails. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 208 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 209 | int mbedtls_cipher_cmac(const mbedtls_cipher_info_t *cipher_info, |
| 210 | const unsigned char *key, size_t keylen, |
| 211 | const unsigned char *input, size_t ilen, |
| 212 | unsigned char *output); |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 213 | |
Simon Butcher | 69283e5 | 2016-10-06 12:49:58 +0100 | [diff] [blame] | 214 | #if defined(MBEDTLS_AES_C) |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 215 | /** |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 216 | * \brief This function implements the AES-CMAC-PRF-128 pseudorandom |
| 217 | * function, as defined in |
| 218 | * <em>RFC-4615: The Advanced Encryption Standard-Cipher-based |
| 219 | * Message Authentication Code-Pseudo-Random Function-128 |
| 220 | * (AES-CMAC-PRF-128) Algorithm for the Internet Key |
| 221 | * Exchange Protocol (IKE).</em> |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 222 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 223 | * \param key The key to use. |
| 224 | * \param key_len The key length in Bytes. |
| 225 | * \param input The buffer holding the input data. |
| 226 | * \param in_len The length of the input data in Bytes. |
| 227 | * \param output The buffer holding the generated 16 Bytes of |
| 228 | * pseudorandom output. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 229 | * |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 230 | * \return \c 0 on success. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 231 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 232 | int mbedtls_aes_cmac_prf_128(const unsigned char *key, size_t key_len, |
| 233 | const unsigned char *input, size_t in_len, |
| 234 | unsigned char output[16]); |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame] | 235 | #endif /* MBEDTLS_AES_C */ |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 236 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 237 | #if defined(MBEDTLS_SELF_TEST) && (defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C)) |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 238 | /** |
Rose Zadik | 380d05d | 2018-01-25 21:52:41 +0000 | [diff] [blame] | 239 | * \brief The CMAC checkup routine. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 240 | * |
Steven Cooreman | 894b9c4 | 2021-04-23 08:19:43 +0200 | [diff] [blame] | 241 | * \note In case the CMAC routines are provided by an alternative |
| 242 | * implementation (i.e. #MBEDTLS_CMAC_ALT is defined), the |
| 243 | * checkup routine will succeed even if the implementation does |
| 244 | * not support the less widely used AES-192 or 3DES primitives. |
| 245 | * The self-test requires at least AES-128 and AES-256 to be |
| 246 | * supported by the underlying implementation. |
| 247 | * |
Rose Zadik | 8c15493 | 2018-03-27 10:45:16 +0100 | [diff] [blame] | 248 | * \return \c 0 on success. |
| 249 | * \return \c 1 on failure. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 250 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 251 | int mbedtls_cmac_self_test(int verbose); |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame] | 252 | #endif /* MBEDTLS_SELF_TEST && ( MBEDTLS_AES_C || MBEDTLS_DES_C ) */ |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 253 | |
| 254 | #ifdef __cplusplus |
| 255 | } |
| 256 | #endif |
| 257 | |
| 258 | #endif /* MBEDTLS_CMAC_H */ |