blob: 887c7ccdfcf1c2c21b057e8ec37eb4c88ac223c3 [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
Mateusz Starzyk846f0212021-05-19 19:44:07 +020028#include "mbedtls/private_access.h"
Robert Cragie3d23b1d2015-12-15 07:38:11 +000029
Bence Szépkútic662b362021-05-27 11:25:03 +020030#include "mbedtls/build_info.h"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050031
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010032#include "mbedtls/cipher.h"
Robert Cragie3d23b1d2015-12-15 07:38:11 +000033
34#ifdef __cplusplus
35extern "C" {
36#endif
37
Simon Butcher69283e52016-10-06 12:49:58 +010038#define MBEDTLS_AES_BLOCK_SIZE 16
39#define MBEDTLS_DES3_BLOCK_SIZE 8
40
Simon Butcher327398a2016-10-05 14:09:11 +010041#if defined(MBEDTLS_AES_C)
Mateusz Starzyk16fec332021-07-22 16:43:35 +020042/** The longest block used by CMAC is that of AES. */
43#define MBEDTLS_CIPHER_BLKSIZE_MAX 16
Simon Butcher327398a2016-10-05 14:09:11 +010044#else
Mateusz Starzyk16fec332021-07-22 16:43:35 +020045/** The longest block used by CMAC is that of 3DES. */
46#define MBEDTLS_CIPHER_BLKSIZE_MAX 8
Simon Butcher327398a2016-10-05 14:09:11 +010047#endif
48
Steven Cooreman63342772017-04-04 11:47:16 +020049#if !defined(MBEDTLS_CMAC_ALT)
50
Robert Cragie3d23b1d2015-12-15 07:38:11 +000051/**
Rose Zadik380d05d2018-01-25 21:52:41 +000052 * The CMAC context structure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000053 */
Simon Butcher8308a442016-10-05 15:12:59 +010054struct mbedtls_cmac_context_t
55{
Rose Zadik380d05d2018-01-25 21:52:41 +000056 /** The internal state of the CMAC algorithm. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020057 unsigned char MBEDTLS_PRIVATE(state)[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010058
Andres AGa592dcc2016-10-06 15:23:39 +010059 /** Unprocessed data - either data that was not block aligned and is still
Rose Zadik380d05d2018-01-25 21:52:41 +000060 * pending processing, or the final block. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020061 unsigned char MBEDTLS_PRIVATE(unprocessed_block)[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010062
Rose Zadik380d05d2018-01-25 21:52:41 +000063 /** The length of data pending processing. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020064 size_t MBEDTLS_PRIVATE(unprocessed_len);
Simon Butcher8308a442016-10-05 15:12:59 +010065};
Robert Cragie3d23b1d2015-12-15 07:38:11 +000066
Ron Eldor4e6d55d2018-02-07 16:36:15 +020067#else /* !MBEDTLS_CMAC_ALT */
68#include "cmac_alt.h"
69#endif /* !MBEDTLS_CMAC_ALT */
70
Robert Cragie3d23b1d2015-12-15 07:38:11 +000071/**
Rose Zadik380d05d2018-01-25 21:52:41 +000072 * \brief This function sets the CMAC key, and prepares to authenticate
73 * the input data.
74 * Must be called with an initialized cipher context.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000075 *
Steven Cooremanc338cef2021-04-26 11:24:44 +020076 * \note When the CMAC implementation is supplied by an alternate
77 * implementation (through #MBEDTLS_CMAC_ALT), some ciphers
78 * may not be supported by that implementation, and thus
79 * return an error. Alternate implementations must support
80 * AES-128 and AES-256, and may support AES-192 and 3DES.
81 *
Rose Zadik380d05d2018-01-25 21:52:41 +000082 * \param ctx The cipher context used for the CMAC operation, initialized
Rose Zadik8c154932018-03-27 10:45:16 +010083 * as one of the following types: MBEDTLS_CIPHER_AES_128_ECB,
84 * MBEDTLS_CIPHER_AES_192_ECB, MBEDTLS_CIPHER_AES_256_ECB,
85 * or MBEDTLS_CIPHER_DES_EDE3_ECB.
Rose Zadik380d05d2018-01-25 21:52:41 +000086 * \param key The CMAC key.
87 * \param keybits The length of the CMAC key in bits.
88 * Must be supported by the cipher.
Simon Butcher327398a2016-10-05 14:09:11 +010089 *
Rose Zadikc138bb72018-04-16 11:11:25 +010090 * \return \c 0 on success.
91 * \return A cipher-specific error code on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000092 */
Simon Butcher327398a2016-10-05 14:09:11 +010093int mbedtls_cipher_cmac_starts( mbedtls_cipher_context_t *ctx,
Simon Butcher94ffde72016-10-05 15:33:53 +010094 const unsigned char *key, size_t keybits );
Robert Cragie3d23b1d2015-12-15 07:38:11 +000095
96/**
Rose Zadik380d05d2018-01-25 21:52:41 +000097 * \brief This function feeds an input buffer into an ongoing CMAC
98 * computation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000099 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000100 * It is called between mbedtls_cipher_cmac_starts() or
101 * mbedtls_cipher_cmac_reset(), and mbedtls_cipher_cmac_finish().
102 * Can be called repeatedly.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000103 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000104 * \param ctx The cipher context used for the CMAC operation.
105 * \param input The buffer holding the input data.
106 * \param ilen The length of the input data.
107 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100108 * \return \c 0 on success.
109 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik8c154932018-03-27 10:45:16 +0100110 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000111 */
Simon Butcher327398a2016-10-05 14:09:11 +0100112int mbedtls_cipher_cmac_update( mbedtls_cipher_context_t *ctx,
113 const unsigned char *input, size_t ilen );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000114
115/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000116 * \brief This function finishes the CMAC operation, and writes
117 * the result to the output buffer.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000118 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000119 * It is called after mbedtls_cipher_cmac_update().
120 * It can be followed by mbedtls_cipher_cmac_reset() and
121 * mbedtls_cipher_cmac_update(), or mbedtls_cipher_free().
Simon Butcher327398a2016-10-05 14:09:11 +0100122 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000123 * \param ctx The cipher context used for the CMAC operation.
124 * \param output The output buffer for the CMAC checksum result.
125 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100126 * \return \c 0 on success.
127 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000128 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000129 */
Simon Butcher327398a2016-10-05 14:09:11 +0100130int mbedtls_cipher_cmac_finish( mbedtls_cipher_context_t *ctx,
131 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000132
133/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000134 * \brief This function prepares the authentication of another
135 * message with the same key as the previous CMAC
136 * operation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000137 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000138 * It is called after mbedtls_cipher_cmac_finish()
139 * and before mbedtls_cipher_cmac_update().
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000140 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000141 * \param ctx The cipher context used for the CMAC operation.
142 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100143 * \return \c 0 on success.
144 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000145 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000146 */
Simon Butcher327398a2016-10-05 14:09:11 +0100147int mbedtls_cipher_cmac_reset( mbedtls_cipher_context_t *ctx );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000148
149/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000150 * \brief This function calculates the full generic CMAC
151 * on the input buffer with the provided key.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000152 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000153 * The function allocates the context, performs the
154 * calculation, and frees the context.
Simon Butcher327398a2016-10-05 14:09:11 +0100155 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000156 * The CMAC result is calculated as
157 * output = generic CMAC(cmac key, input buffer).
158 *
Steven Cooremanc338cef2021-04-26 11:24:44 +0200159 * \note When the CMAC implementation is supplied by an alternate
160 * implementation (through #MBEDTLS_CMAC_ALT), some ciphers
161 * may not be supported by that implementation, and thus
162 * return an error. Alternate implementations must support
163 * AES-128 and AES-256, and may support AES-192 and 3DES.
Rose Zadik380d05d2018-01-25 21:52:41 +0000164 *
165 * \param cipher_info The cipher information.
166 * \param key The CMAC key.
167 * \param keylen The length of the CMAC key in bits.
168 * \param input The buffer holding the input data.
169 * \param ilen The length of the input data.
170 * \param output The buffer for the generic CMAC result.
171 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100172 * \return \c 0 on success.
173 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000174 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000175 */
Simon Butcher327398a2016-10-05 14:09:11 +0100176int mbedtls_cipher_cmac( const mbedtls_cipher_info_t *cipher_info,
177 const unsigned char *key, size_t keylen,
178 const unsigned char *input, size_t ilen,
179 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000180
Simon Butcher69283e52016-10-06 12:49:58 +0100181#if defined(MBEDTLS_AES_C)
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000182/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000183 * \brief This function implements the AES-CMAC-PRF-128 pseudorandom
184 * function, as defined in
185 * <em>RFC-4615: The Advanced Encryption Standard-Cipher-based
186 * Message Authentication Code-Pseudo-Random Function-128
187 * (AES-CMAC-PRF-128) Algorithm for the Internet Key
188 * Exchange Protocol (IKE).</em>
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000189 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000190 * \param key The key to use.
191 * \param key_len The key length in Bytes.
192 * \param input The buffer holding the input data.
193 * \param in_len The length of the input data in Bytes.
194 * \param output The buffer holding the generated 16 Bytes of
195 * pseudorandom output.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000196 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000197 * \return \c 0 on success.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000198 */
Brian Murrayb0c3c432016-05-18 14:29:51 -0700199int mbedtls_aes_cmac_prf_128( const unsigned char *key, size_t key_len,
Manuel Pégourié-Gonnard690083c2016-01-13 10:48:02 +0000200 const unsigned char *input, size_t in_len,
Simon Butcher327398a2016-10-05 14:09:11 +0100201 unsigned char output[16] );
Brian Murrayb439d452016-05-19 16:02:42 -0700202#endif /* MBEDTLS_AES_C */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000203
Brian Murrayb439d452016-05-19 16:02:42 -0700204#if defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000205/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000206 * \brief The CMAC checkup routine.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000207 *
Steven Cooreman894b9c42021-04-23 08:19:43 +0200208 * \note In case the CMAC routines are provided by an alternative
209 * implementation (i.e. #MBEDTLS_CMAC_ALT is defined), the
210 * checkup routine will succeed even if the implementation does
211 * not support the less widely used AES-192 or 3DES primitives.
212 * The self-test requires at least AES-128 and AES-256 to be
213 * supported by the underlying implementation.
214 *
Rose Zadik8c154932018-03-27 10:45:16 +0100215 * \return \c 0 on success.
216 * \return \c 1 on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000217 */
218int mbedtls_cmac_self_test( int verbose );
Brian Murrayb439d452016-05-19 16:02:42 -0700219#endif /* MBEDTLS_SELF_TEST && ( MBEDTLS_AES_C || MBEDTLS_DES_C ) */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000220
221#ifdef __cplusplus
222}
223#endif
224
225#endif /* MBEDTLS_CMAC_H */