blob: 94139d5b4c7e04d59ccb78912a76f1e67047f313 [file] [log] [blame]
Robert Cragie3d23b1d2015-12-15 07:38:11 +00001/**
2 * \file cmac.h
3 *
Rose Zadik8c154932018-03-27 10:45:16 +01004 * \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 Greena40a1012018-01-05 15:33:17 +00008 */
9/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020010 * Copyright The Mbed TLS Contributors
Robert Cragie3d23b1d2015-12-15 07:38:11 +000011 * 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 Cragie3d23b1d2015-12-15 07:38:11 +000024 */
Rose Zadik380d05d2018-01-25 21:52:41 +000025
Robert Cragie3d23b1d2015-12-15 07:38:11 +000026#ifndef MBEDTLS_CMAC_H
27#define MBEDTLS_CMAC_H
28
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050029#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010030#include "mbedtls/config.h"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050031#else
32#include MBEDTLS_CONFIG_FILE
33#endif
34
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010035#include "mbedtls/cipher.h"
Robert Cragie3d23b1d2015-12-15 07:38:11 +000036
37#ifdef __cplusplus
38extern "C" {
39#endif
40
Ron Eldor9924bdc2018-10-04 10:59:13 +030041/* MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED is deprecated and should not be used. */
Gilles Peskinea3974432021-07-26 18:48:10 +020042/** CMAC hardware accelerator failed. */
43#define MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED -0x007A
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010044
Simon Butcher69283e52016-10-06 12:49:58 +010045#define MBEDTLS_AES_BLOCK_SIZE 16
46#define MBEDTLS_DES3_BLOCK_SIZE 8
47
Simon Butcher327398a2016-10-05 14:09:11 +010048#if defined(MBEDTLS_AES_C)
Rose Zadik8c154932018-03-27 10:45:16 +010049#define MBEDTLS_CIPHER_BLKSIZE_MAX 16 /**< The longest block used by CMAC is that of AES. */
Simon Butcher327398a2016-10-05 14:09:11 +010050#else
Rose Zadik8c154932018-03-27 10:45:16 +010051#define MBEDTLS_CIPHER_BLKSIZE_MAX 8 /**< The longest block used by CMAC is that of 3DES. */
Simon Butcher327398a2016-10-05 14:09:11 +010052#endif
53
Steven Cooreman63342772017-04-04 11:47:16 +020054#if !defined(MBEDTLS_CMAC_ALT)
55
Robert Cragie3d23b1d2015-12-15 07:38:11 +000056/**
Rose Zadik380d05d2018-01-25 21:52:41 +000057 * The CMAC context structure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000058 */
Simon Butcher8308a442016-10-05 15:12:59 +010059struct mbedtls_cmac_context_t
60{
Rose Zadik380d05d2018-01-25 21:52:41 +000061 /** The internal state of the CMAC algorithm. */
Simon Butcher69283e52016-10-06 12:49:58 +010062 unsigned char state[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010063
Andres AGa592dcc2016-10-06 15:23:39 +010064 /** Unprocessed data - either data that was not block aligned and is still
Rose Zadik380d05d2018-01-25 21:52:41 +000065 * pending processing, or the final block. */
Simon Butcher69283e52016-10-06 12:49:58 +010066 unsigned char unprocessed_block[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010067
Rose Zadik380d05d2018-01-25 21:52:41 +000068 /** The length of data pending processing. */
Simon Butcher327398a2016-10-05 14:09:11 +010069 size_t unprocessed_len;
Simon Butcher8308a442016-10-05 15:12:59 +010070};
Robert Cragie3d23b1d2015-12-15 07:38:11 +000071
Ron Eldor4e6d55d2018-02-07 16:36:15 +020072#else /* !MBEDTLS_CMAC_ALT */
73#include "cmac_alt.h"
74#endif /* !MBEDTLS_CMAC_ALT */
75
Robert Cragie3d23b1d2015-12-15 07:38:11 +000076/**
Rose Zadik380d05d2018-01-25 21:52:41 +000077 * \brief This function sets the CMAC key, and prepares to authenticate
78 * the input data.
79 * Must be called with an initialized cipher context.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000080 *
Steven Cooreman5d342bf2021-04-26 11:24:44 +020081 * \note When the CMAC implementation is supplied by an alternate
82 * implementation (through #MBEDTLS_CMAC_ALT), some ciphers
83 * may not be supported by that implementation, and thus
84 * return an error. Alternate implementations must support
85 * AES-128 and AES-256, and may support AES-192 and 3DES.
86 *
Rose Zadik380d05d2018-01-25 21:52:41 +000087 * \param ctx The cipher context used for the CMAC operation, initialized
Rose Zadik8c154932018-03-27 10:45:16 +010088 * as one of the following types: MBEDTLS_CIPHER_AES_128_ECB,
89 * MBEDTLS_CIPHER_AES_192_ECB, MBEDTLS_CIPHER_AES_256_ECB,
90 * or MBEDTLS_CIPHER_DES_EDE3_ECB.
Rose Zadik380d05d2018-01-25 21:52:41 +000091 * \param key The CMAC key.
92 * \param keybits The length of the CMAC key in bits.
93 * Must be supported by the cipher.
Simon Butcher327398a2016-10-05 14:09:11 +010094 *
Rose Zadikc138bb72018-04-16 11:11:25 +010095 * \return \c 0 on success.
96 * \return A cipher-specific error code on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000097 */
Simon Butcher327398a2016-10-05 14:09:11 +010098int mbedtls_cipher_cmac_starts( mbedtls_cipher_context_t *ctx,
Simon Butcher94ffde72016-10-05 15:33:53 +010099 const unsigned char *key, size_t keybits );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000100
101/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000102 * \brief This function feeds an input buffer into an ongoing CMAC
103 * computation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000104 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000105 * It is called between mbedtls_cipher_cmac_starts() or
106 * mbedtls_cipher_cmac_reset(), and mbedtls_cipher_cmac_finish().
107 * Can be called repeatedly.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000108 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000109 * \param ctx The cipher context used for the CMAC operation.
110 * \param input The buffer holding the input data.
111 * \param ilen The length of the input data.
112 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100113 * \return \c 0 on success.
114 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik8c154932018-03-27 10:45:16 +0100115 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000116 */
Simon Butcher327398a2016-10-05 14:09:11 +0100117int mbedtls_cipher_cmac_update( mbedtls_cipher_context_t *ctx,
118 const unsigned char *input, size_t ilen );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000119
120/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000121 * \brief This function finishes the CMAC operation, and writes
122 * the result to the output buffer.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000123 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000124 * It is called after mbedtls_cipher_cmac_update().
125 * It can be followed by mbedtls_cipher_cmac_reset() and
126 * mbedtls_cipher_cmac_update(), or mbedtls_cipher_free().
Simon Butcher327398a2016-10-05 14:09:11 +0100127 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000128 * \param ctx The cipher context used for the CMAC operation.
129 * \param output The output buffer for the CMAC checksum result.
130 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100131 * \return \c 0 on success.
132 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000133 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000134 */
Simon Butcher327398a2016-10-05 14:09:11 +0100135int mbedtls_cipher_cmac_finish( mbedtls_cipher_context_t *ctx,
136 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000137
138/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000139 * \brief This function prepares the authentication of another
140 * message with the same key as the previous CMAC
141 * operation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000142 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000143 * It is called after mbedtls_cipher_cmac_finish()
144 * and before mbedtls_cipher_cmac_update().
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000145 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000146 * \param ctx The cipher context used for the CMAC operation.
147 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100148 * \return \c 0 on success.
149 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000150 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000151 */
Simon Butcher327398a2016-10-05 14:09:11 +0100152int mbedtls_cipher_cmac_reset( mbedtls_cipher_context_t *ctx );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000153
154/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000155 * \brief This function calculates the full generic CMAC
156 * on the input buffer with the provided key.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000157 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000158 * The function allocates the context, performs the
159 * calculation, and frees the context.
Simon Butcher327398a2016-10-05 14:09:11 +0100160 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000161 * The CMAC result is calculated as
162 * output = generic CMAC(cmac key, input buffer).
163 *
Steven Cooreman5d342bf2021-04-26 11:24:44 +0200164 * \note When the CMAC implementation is supplied by an alternate
165 * implementation (through #MBEDTLS_CMAC_ALT), some ciphers
166 * may not be supported by that implementation, and thus
167 * return an error. Alternate implementations must support
168 * AES-128 and AES-256, and may support AES-192 and 3DES.
Rose Zadik380d05d2018-01-25 21:52:41 +0000169 *
170 * \param cipher_info The cipher information.
171 * \param key The CMAC key.
172 * \param keylen The length of the CMAC key in bits.
173 * \param input The buffer holding the input data.
174 * \param ilen The length of the input data.
175 * \param output The buffer for the generic CMAC result.
176 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100177 * \return \c 0 on success.
178 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000179 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000180 */
Simon Butcher327398a2016-10-05 14:09:11 +0100181int mbedtls_cipher_cmac( const mbedtls_cipher_info_t *cipher_info,
182 const unsigned char *key, size_t keylen,
183 const unsigned char *input, size_t ilen,
184 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000185
Simon Butcher69283e52016-10-06 12:49:58 +0100186#if defined(MBEDTLS_AES_C)
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000187/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000188 * \brief This function implements the AES-CMAC-PRF-128 pseudorandom
189 * function, as defined in
190 * <em>RFC-4615: The Advanced Encryption Standard-Cipher-based
191 * Message Authentication Code-Pseudo-Random Function-128
192 * (AES-CMAC-PRF-128) Algorithm for the Internet Key
193 * Exchange Protocol (IKE).</em>
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000194 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000195 * \param key The key to use.
196 * \param key_len The key length in Bytes.
197 * \param input The buffer holding the input data.
198 * \param in_len The length of the input data in Bytes.
199 * \param output The buffer holding the generated 16 Bytes of
200 * pseudorandom output.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000201 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000202 * \return \c 0 on success.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000203 */
Brian Murrayb0c3c432016-05-18 14:29:51 -0700204int mbedtls_aes_cmac_prf_128( const unsigned char *key, size_t key_len,
Manuel Pégourié-Gonnard690083c2016-01-13 10:48:02 +0000205 const unsigned char *input, size_t in_len,
Simon Butcher327398a2016-10-05 14:09:11 +0100206 unsigned char output[16] );
Brian Murrayb439d452016-05-19 16:02:42 -0700207#endif /* MBEDTLS_AES_C */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000208
Brian Murrayb439d452016-05-19 16:02:42 -0700209#if defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000210/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000211 * \brief The CMAC checkup routine.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000212 *
Steven Cooreman91e2bab2021-04-23 08:19:43 +0200213 * \note In case the CMAC routines are provided by an alternative
214 * implementation (i.e. #MBEDTLS_CMAC_ALT is defined), the
215 * checkup routine will succeed even if the implementation does
216 * not support the less widely used AES-192 or 3DES primitives.
217 * The self-test requires at least AES-128 and AES-256 to be
218 * supported by the underlying implementation.
219 *
Rose Zadik8c154932018-03-27 10:45:16 +0100220 * \return \c 0 on success.
221 * \return \c 1 on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000222 */
223int mbedtls_cmac_self_test( int verbose );
Brian Murrayb439d452016-05-19 16:02:42 -0700224#endif /* MBEDTLS_SELF_TEST && ( MBEDTLS_AES_C || MBEDTLS_DES_C ) */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000225
226#ifdef __cplusplus
227}
228#endif
229
230#endif /* MBEDTLS_CMAC_H */