blob: a4fd5525655e342d1ee0a8bba60cb96bb5623ad6 [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/*
Rose Zadik380d05d2018-01-25 21:52:41 +000010 * Copyright (C) 2015-2018, Arm Limited (or its affiliates), All Rights Reserved
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.
24 *
Rose Zadik380d05d2018-01-25 21:52:41 +000025 * This file is part of Mbed TLS (https://tls.mbed.org)
Robert Cragie3d23b1d2015-12-15 07:38:11 +000026 */
Rose Zadik380d05d2018-01-25 21:52:41 +000027
Robert Cragie3d23b1d2015-12-15 07:38:11 +000028#ifndef MBEDTLS_CMAC_H
29#define MBEDTLS_CMAC_H
30
Ron Eldor6fd941f2017-05-14 16:17:33 +030031#include "cipher.h"
Robert Cragie3d23b1d2015-12-15 07:38:11 +000032
33#ifdef __cplusplus
34extern "C" {
35#endif
36
Rose Zadik380d05d2018-01-25 21:52:41 +000037#define MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED -0x007A /**< CMAC hardware accelerator failed. */
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010038
Simon Butcher69283e52016-10-06 12:49:58 +010039#define MBEDTLS_AES_BLOCK_SIZE 16
40#define MBEDTLS_DES3_BLOCK_SIZE 8
41
Simon Butcher327398a2016-10-05 14:09:11 +010042#if defined(MBEDTLS_AES_C)
Rose Zadik8c154932018-03-27 10:45:16 +010043#define MBEDTLS_CIPHER_BLKSIZE_MAX 16 /**< The longest block used by CMAC is that of AES. */
Simon Butcher327398a2016-10-05 14:09:11 +010044#else
Rose Zadik8c154932018-03-27 10:45:16 +010045#define MBEDTLS_CIPHER_BLKSIZE_MAX 8 /**< The longest block used by CMAC is that of 3DES. */
Simon Butcher327398a2016-10-05 14:09:11 +010046#endif
47
Steven Cooreman63342772017-04-04 11:47:16 +020048#if !defined(MBEDTLS_CMAC_ALT)
49
Robert Cragie3d23b1d2015-12-15 07:38:11 +000050/**
Rose Zadik380d05d2018-01-25 21:52:41 +000051 * The CMAC context structure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000052 */
Simon Butcher8308a442016-10-05 15:12:59 +010053struct mbedtls_cmac_context_t
54{
Rose Zadik380d05d2018-01-25 21:52:41 +000055 /** The internal state of the CMAC algorithm. */
Simon Butcher69283e52016-10-06 12:49:58 +010056 unsigned char state[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010057
Andres AGa592dcc2016-10-06 15:23:39 +010058 /** Unprocessed data - either data that was not block aligned and is still
Rose Zadik380d05d2018-01-25 21:52:41 +000059 * pending processing, or the final block. */
Simon Butcher69283e52016-10-06 12:49:58 +010060 unsigned char unprocessed_block[MBEDTLS_CIPHER_BLKSIZE_MAX];
Simon Butcher327398a2016-10-05 14:09:11 +010061
Rose Zadik380d05d2018-01-25 21:52:41 +000062 /** The length of data pending processing. */
Simon Butcher327398a2016-10-05 14:09:11 +010063 size_t unprocessed_len;
Simon Butcher8308a442016-10-05 15:12:59 +010064};
Robert Cragie3d23b1d2015-12-15 07:38:11 +000065
Ron Eldor4e6d55d2018-02-07 16:36:15 +020066#else /* !MBEDTLS_CMAC_ALT */
67#include "cmac_alt.h"
68#endif /* !MBEDTLS_CMAC_ALT */
69
Robert Cragie3d23b1d2015-12-15 07:38:11 +000070/**
Rose Zadik380d05d2018-01-25 21:52:41 +000071 * \brief This function sets the CMAC key, and prepares to authenticate
72 * the input data.
73 * Must be called with an initialized cipher context.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000074 *
Rose Zadik380d05d2018-01-25 21:52:41 +000075 * \param ctx The cipher context used for the CMAC operation, initialized
Rose Zadik8c154932018-03-27 10:45:16 +010076 * as one of the following types: MBEDTLS_CIPHER_AES_128_ECB,
77 * MBEDTLS_CIPHER_AES_192_ECB, MBEDTLS_CIPHER_AES_256_ECB,
78 * or MBEDTLS_CIPHER_DES_EDE3_ECB.
Rose Zadik380d05d2018-01-25 21:52:41 +000079 * \param key The CMAC key.
80 * \param keybits The length of the CMAC key in bits.
81 * Must be supported by the cipher.
Simon Butcher327398a2016-10-05 14:09:11 +010082 *
Rose Zadikc138bb72018-04-16 11:11:25 +010083 * \return \c 0 on success.
84 * \return A cipher-specific error code on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000085 */
Simon Butcher327398a2016-10-05 14:09:11 +010086int mbedtls_cipher_cmac_starts( mbedtls_cipher_context_t *ctx,
Simon Butcher94ffde72016-10-05 15:33:53 +010087 const unsigned char *key, size_t keybits );
Robert Cragie3d23b1d2015-12-15 07:38:11 +000088
89/**
Rose Zadik380d05d2018-01-25 21:52:41 +000090 * \brief This function feeds an input buffer into an ongoing CMAC
91 * computation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000092 *
Rose Zadik380d05d2018-01-25 21:52:41 +000093 * It is called between mbedtls_cipher_cmac_starts() or
94 * mbedtls_cipher_cmac_reset(), and mbedtls_cipher_cmac_finish().
95 * Can be called repeatedly.
Robert Cragie3d23b1d2015-12-15 07:38:11 +000096 *
Rose Zadik380d05d2018-01-25 21:52:41 +000097 * \param ctx The cipher context used for the CMAC operation.
98 * \param input The buffer holding the input data.
99 * \param ilen The length of the input data.
100 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100101 * \return \c 0 on success.
102 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik8c154932018-03-27 10:45:16 +0100103 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000104 */
Simon Butcher327398a2016-10-05 14:09:11 +0100105int mbedtls_cipher_cmac_update( mbedtls_cipher_context_t *ctx,
106 const unsigned char *input, size_t ilen );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000107
108/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000109 * \brief This function finishes the CMAC operation, and writes
110 * the result to the output buffer.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000111 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000112 * It is called after mbedtls_cipher_cmac_update().
113 * It can be followed by mbedtls_cipher_cmac_reset() and
114 * mbedtls_cipher_cmac_update(), or mbedtls_cipher_free().
Simon Butcher327398a2016-10-05 14:09:11 +0100115 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000116 * \param ctx The cipher context used for the CMAC operation.
117 * \param output The output buffer for the CMAC checksum result.
118 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100119 * \return \c 0 on success.
120 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000121 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000122 */
Simon Butcher327398a2016-10-05 14:09:11 +0100123int mbedtls_cipher_cmac_finish( mbedtls_cipher_context_t *ctx,
124 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000125
126/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000127 * \brief This function prepares the authentication of another
128 * message with the same key as the previous CMAC
129 * operation.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000130 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000131 * It is called after mbedtls_cipher_cmac_finish()
132 * and before mbedtls_cipher_cmac_update().
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000133 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000134 * \param ctx The cipher context used for the CMAC operation.
135 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100136 * \return \c 0 on success.
137 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000138 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000139 */
Simon Butcher327398a2016-10-05 14:09:11 +0100140int mbedtls_cipher_cmac_reset( mbedtls_cipher_context_t *ctx );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000141
142/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000143 * \brief This function calculates the full generic CMAC
144 * on the input buffer with the provided key.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000145 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000146 * The function allocates the context, performs the
147 * calculation, and frees the context.
Simon Butcher327398a2016-10-05 14:09:11 +0100148 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000149 * The CMAC result is calculated as
150 * output = generic CMAC(cmac key, input buffer).
151 *
152 *
153 * \param cipher_info The cipher information.
154 * \param key The CMAC key.
155 * \param keylen The length of the CMAC key in bits.
156 * \param input The buffer holding the input data.
157 * \param ilen The length of the input data.
158 * \param output The buffer for the generic CMAC result.
159 *
Rose Zadikc138bb72018-04-16 11:11:25 +0100160 * \return \c 0 on success.
161 * \return #MBEDTLS_ERR_MD_BAD_INPUT_DATA
Rose Zadik380d05d2018-01-25 21:52:41 +0000162 * if parameter verification fails.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000163 */
Simon Butcher327398a2016-10-05 14:09:11 +0100164int mbedtls_cipher_cmac( const mbedtls_cipher_info_t *cipher_info,
165 const unsigned char *key, size_t keylen,
166 const unsigned char *input, size_t ilen,
167 unsigned char *output );
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000168
Simon Butcher69283e52016-10-06 12:49:58 +0100169#if defined(MBEDTLS_AES_C)
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000170/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000171 * \brief This function implements the AES-CMAC-PRF-128 pseudorandom
172 * function, as defined in
173 * <em>RFC-4615: The Advanced Encryption Standard-Cipher-based
174 * Message Authentication Code-Pseudo-Random Function-128
175 * (AES-CMAC-PRF-128) Algorithm for the Internet Key
176 * Exchange Protocol (IKE).</em>
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000177 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000178 * \param key The key to use.
179 * \param key_len The key length in Bytes.
180 * \param input The buffer holding the input data.
181 * \param in_len The length of the input data in Bytes.
182 * \param output The buffer holding the generated 16 Bytes of
183 * pseudorandom output.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000184 *
Rose Zadik380d05d2018-01-25 21:52:41 +0000185 * \return \c 0 on success.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000186 */
Brian Murrayb0c3c432016-05-18 14:29:51 -0700187int mbedtls_aes_cmac_prf_128( const unsigned char *key, size_t key_len,
Manuel Pégourié-Gonnard690083c2016-01-13 10:48:02 +0000188 const unsigned char *input, size_t in_len,
Simon Butcher327398a2016-10-05 14:09:11 +0100189 unsigned char output[16] );
Brian Murrayb439d452016-05-19 16:02:42 -0700190#endif /* MBEDTLS_AES_C */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000191
Brian Murrayb439d452016-05-19 16:02:42 -0700192#if defined(MBEDTLS_SELF_TEST) && ( defined(MBEDTLS_AES_C) || defined(MBEDTLS_DES_C) )
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000193/**
Rose Zadik380d05d2018-01-25 21:52:41 +0000194 * \brief The CMAC checkup routine.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000195 *
Rose Zadik8c154932018-03-27 10:45:16 +0100196 * \return \c 0 on success.
197 * \return \c 1 on failure.
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000198 */
199int mbedtls_cmac_self_test( int verbose );
Brian Murrayb439d452016-05-19 16:02:42 -0700200#endif /* MBEDTLS_SELF_TEST && ( MBEDTLS_AES_C || MBEDTLS_DES_C ) */
Robert Cragie3d23b1d2015-12-15 07:38:11 +0000201
202#ifdef __cplusplus
203}
204#endif
205
206#endif /* MBEDTLS_CMAC_H */