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