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