blob: 702175fd10f81eeb82b3b368474afc0ba657986d [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
Simon Butcher69283e52016-10-06 12:49:58 +010041#define MBEDTLS_AES_BLOCK_SIZE 16
42#define MBEDTLS_DES3_BLOCK_SIZE 8
43
Simon Butcher327398a2016-10-05 14:09:11 +010044#if defined(MBEDTLS_AES_C)
Rose Zadik8c154932018-03-27 10:45:16 +010045#define MBEDTLS_CIPHER_BLKSIZE_MAX 16 /**< The longest block used by CMAC is that of AES. */
Simon Butcher327398a2016-10-05 14:09:11 +010046#else
Rose Zadik8c154932018-03-27 10:45:16 +010047#define MBEDTLS_CIPHER_BLKSIZE_MAX 8 /**< The longest block used by CMAC is that of 3DES. */
Simon Butcher327398a2016-10-05 14:09:11 +010048#endif
49
Steven Cooreman63342772017-04-04 11:47:16 +020050#if !defined(MBEDTLS_CMAC_ALT)
51
Robert Cragie3d23b1d2015-12-15 07:38:11 +000052/**
Rose Zadik380d05d2018-01-25 21:52:41 +000053 * The CMAC context structure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000054 */
Simon Butcher8308a442016-10-05 15:12:59 +010055struct mbedtls_cmac_context_t
56{
Rose Zadik380d05d2018-01-25 21:52:41 +000057 /** The internal state of the CMAC algorithm. */
Simon Butcher69283e52016-10-06 12:49:58 +010058 unsigned char state[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010059
Andres AGa592dcc2016-10-06 15:23:39 +010060 /** Unprocessed data - either data that was not block aligned and is still
Rose Zadik380d05d2018-01-25 21:52:41 +000061 * pending processing, or the final block. */
Simon Butcher69283e52016-10-06 12:49:58 +010062 unsigned char unprocessed_block[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010063
Rose Zadik380d05d2018-01-25 21:52:41 +000064 /** The length of data pending processing. */
Simon Butcher327398a2016-10-05 14:09:11 +010065 size_t unprocessed_len;
Simon Butcher8308a442016-10-05 15:12:59 +010066};
Robert Cragie3d23b1d2015-12-15 07:38:11 +000067
Ron Eldor4e6d55d2018-02-07 16:36:15 +020068#else /* !MBEDTLS_CMAC_ALT */
69#include "cmac_alt.h"
70#endif /* !MBEDTLS_CMAC_ALT */
71
Robert Cragie3d23b1d2015-12-15 07:38:11 +000072/**
Rose Zadik380d05d2018-01-25 21:52:41 +000073 * \brief This function sets the CMAC key, and prepares to authenticate
74 * the input data.
75 * Must be called with an initialized cipher context.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000076 *
Rose Zadik380d05d2018-01-25 21:52:41 +000077 * \param ctx The cipher context used for the CMAC operation, initialized
Rose Zadik8c154932018-03-27 10:45:16 +010078 * as one of the following types: MBEDTLS_CIPHER_AES_128_ECB,
79 * MBEDTLS_CIPHER_AES_192_ECB, MBEDTLS_CIPHER_AES_256_ECB,
80 * or MBEDTLS_CIPHER_DES_EDE3_ECB.
Rose Zadik380d05d2018-01-25 21:52:41 +000081 * \param key The CMAC key.
82 * \param keybits The length of the CMAC key in bits.
83 * Must be supported by the cipher.
Simon Butcher327398a2016-10-05 14:09:11 +010084 *
Rose Zadikc138bb72018-04-16 11:11:25 +010085 * \return \c 0 on success.
86 * \return A cipher-specific error code on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000087 */
Simon Butcher327398a2016-10-05 14:09:11 +010088int mbedtls_cipher_cmac_starts( mbedtls_cipher_context_t *ctx,
Simon Butcher94ffde72016-10-05 15:33:53 +010089 const unsigned char *key, size_t keybits );
Robert Cragie3d23b1d2015-12-15 07:38:11 +000090
91/**
Rose Zadik380d05d2018-01-25 21:52:41 +000092 * \brief This function feeds an input buffer into an ongoing CMAC
93 * computation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000094 *
Rose Zadik380d05d2018-01-25 21:52:41 +000095 * It is called between mbedtls_cipher_cmac_starts() or
96 * mbedtls_cipher_cmac_reset(), and mbedtls_cipher_cmac_finish().
97 * Can be called repeatedly.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000098 *
Rose Zadik380d05d2018-01-25 21:52:41 +000099 * \param ctx The cipher context used for the CMAC operation.
100 * \param input The buffer holding the input data.
101 * \param ilen The length of the input data.
102 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100103 * \return \c 0 on success.
104 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik8c154932018-03-27 10:45:16 +0100105 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000106 */
Simon Butcher327398a2016-10-05 14:09:11 +0100107int mbedtls_cipher_cmac_update( mbedtls_cipher_context_t *ctx,
108 const unsigned char *input, size_t ilen );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000109
110/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000111 * \brief This function finishes the CMAC operation, and writes
112 * the result to the output buffer.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000113 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000114 * It is called after mbedtls_cipher_cmac_update().
115 * It can be followed by mbedtls_cipher_cmac_reset() and
116 * mbedtls_cipher_cmac_update(), or mbedtls_cipher_free().
Simon Butcher327398a2016-10-05 14:09:11 +0100117 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000118 * \param ctx The cipher context used for the CMAC operation.
119 * \param output The output buffer for the CMAC checksum result.
120 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100121 * \return \c 0 on success.
122 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000123 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000124 */
Simon Butcher327398a2016-10-05 14:09:11 +0100125int mbedtls_cipher_cmac_finish( mbedtls_cipher_context_t *ctx,
126 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000127
128/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000129 * \brief This function prepares the authentication of another
130 * message with the same key as the previous CMAC
131 * operation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000132 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000133 * It is called after mbedtls_cipher_cmac_finish()
134 * and before mbedtls_cipher_cmac_update().
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000135 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000136 * \param ctx The cipher context used for the CMAC operation.
137 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100138 * \return \c 0 on success.
139 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000140 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000141 */
Simon Butcher327398a2016-10-05 14:09:11 +0100142int mbedtls_cipher_cmac_reset( mbedtls_cipher_context_t *ctx );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000143
144/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000145 * \brief This function calculates the full generic CMAC
146 * on the input buffer with the provided key.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000147 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000148 * The function allocates the context, performs the
149 * calculation, and frees the context.
Simon Butcher327398a2016-10-05 14:09:11 +0100150 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000151 * The CMAC result is calculated as
152 * output = generic CMAC(cmac key, input buffer).
153 *
154 *
155 * \param cipher_info The cipher information.
156 * \param key The CMAC key.
157 * \param keylen The length of the CMAC key in bits.
158 * \param input The buffer holding the input data.
159 * \param ilen The length of the input data.
160 * \param output The buffer for the generic CMAC result.
161 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100162 * \return \c 0 on success.
163 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000164 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000165 */
Simon Butcher327398a2016-10-05 14:09:11 +0100166int mbedtls_cipher_cmac( const mbedtls_cipher_info_t *cipher_info,
167 const unsigned char *key, size_t keylen,
168 const unsigned char *input, size_t ilen,
169 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000170
Simon Butcher69283e52016-10-06 12:49:58 +0100171#if defined(MBEDTLS_AES_C)
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000172/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000173 * \brief This function implements the AES-CMAC-PRF-128 pseudorandom
174 * function, as defined in
175 * <em>RFC-4615: The Advanced Encryption Standard-Cipher-based
176 * Message Authentication Code-Pseudo-Random Function-128
177 * (AES-CMAC-PRF-128) Algorithm for the Internet Key
178 * Exchange Protocol (IKE).</em>
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000179 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000180 * \param key The key to use.
181 * \param key_len The key length in Bytes.
182 * \param input The buffer holding the input data.
183 * \param in_len The length of the input data in Bytes.
184 * \param output The buffer holding the generated 16 Bytes of
185 * pseudorandom output.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000186 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000187 * \return \c 0 on success.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000188 */
Brian Murrayb0c3c432016-05-18 14:29:51 -0700189int mbedtls_aes_cmac_prf_128( const unsigned char *key, size_t key_len,
Manuel Pégourié-Gonnard690083c2016-01-13 10:48:02 +0000190 const unsigned char *input, size_t in_len,
Simon Butcher327398a2016-10-05 14:09:11 +0100191 unsigned char output[16] );
Brian Murrayb439d452016-05-19 16:02:42 -0700192#endif /* MBEDTLS_AES_C */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000193
Brian Murrayb439d452016-05-19 16:02:42 -0700194#if defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000195/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000196 * \brief The CMAC checkup routine.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000197 *
Rose Zadik8c154932018-03-27 10:45:16 +0100198 * \return \c 0 on success.
199 * \return \c 1 on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000200 */
201int mbedtls_cmac_self_test( int verbose );
Brian Murrayb439d452016-05-19 16:02:42 -0700202#endif /* MBEDTLS_SELF_TEST && ( MBEDTLS_AES_C || MBEDTLS_DES_C ) */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000203
204#ifdef __cplusplus
205}
206#endif
207
208#endif /* MBEDTLS_CMAC_H */