Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 1 | /** |
| 2 | * \file cmac.h |
| 3 | * |
| 4 | * \brief The CMAC Mode for Authentication |
| 5 | * |
| 6 | * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved |
| 7 | * SPDX-License-Identifier: Apache-2.0 |
| 8 | * |
| 9 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 10 | * not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | * |
| 15 | * Unless required by applicable law or agreed to in writing, software |
| 16 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 17 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | * See the License for the specific language governing permissions and |
| 19 | * limitations under the License. |
| 20 | * |
| 21 | * This file is part of mbed TLS (https://tls.mbed.org) |
| 22 | */ |
| 23 | #ifndef MBEDTLS_CMAC_H |
| 24 | #define MBEDTLS_CMAC_H |
| 25 | |
| 26 | #include "cipher.h" |
| 27 | |
| 28 | #define MBEDTLS_ERR_CMAC_BAD_INPUT -0x0011 /**< Bad input parameters to function. */ |
| 29 | #define MBEDTLS_ERR_CMAC_VERIFY_FAILED -0x0013 /**< Verification failed. */ |
| 30 | |
| 31 | #ifdef __cplusplus |
| 32 | extern "C" { |
| 33 | #endif |
| 34 | |
| 35 | /** |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 36 | * \brief CMAC context structure |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 37 | */ |
| 38 | typedef struct { |
| 39 | mbedtls_cipher_context_t cipher_ctx; /*!< cipher context used */ |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 40 | unsigned char* K1; /*!< CMAC Subkey 1 */ |
| 41 | unsigned char* K2; /*!< CMAC Subkey 2 */ |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 42 | } |
| 43 | mbedtls_cmac_context; |
| 44 | |
| 45 | /** |
| 46 | * \brief Initialize CMAC context (just makes references valid) |
| 47 | * Makes the context ready for mbedtls_cmac_setkey() or |
| 48 | * mbedtls_cmac_free(). |
| 49 | * |
| 50 | * \param ctx CMAC context to initialize |
| 51 | */ |
| 52 | void mbedtls_cmac_init( mbedtls_cmac_context *ctx ); |
| 53 | |
| 54 | /** |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 55 | * \brief Initialize the CMAC context |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 56 | * |
| 57 | * \param ctx CMAC context to be initialized |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 58 | * \param cipher cipher to use |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 59 | * \param key encryption key |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 60 | * \param keybits encryption key size in bits (must be acceptable by the cipher) |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 61 | * |
| 62 | * \return 0 if successful, or a cipher specific error code |
| 63 | */ |
| 64 | int mbedtls_cmac_setkey( mbedtls_cmac_context *ctx, |
| 65 | mbedtls_cipher_id_t cipher, |
| 66 | const unsigned char *key, |
| 67 | unsigned int keybits ); |
| 68 | |
| 69 | /** |
| 70 | * \brief Free a CMAC context and underlying cipher sub-context |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 71 | * Securely wipes sub keys and other sensitive data. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 72 | * |
| 73 | * \param ctx CMAC context to free |
| 74 | */ |
| 75 | void mbedtls_cmac_free( mbedtls_cmac_context *ctx ); |
| 76 | |
| 77 | /** |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 78 | * \brief Generate a CMAC tag. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 79 | * |
| 80 | * \param ctx CMAC context |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 81 | * \param input buffer holding the input data |
Manuel Pégourié-Gonnard | 690083c | 2016-01-13 10:48:02 +0000 | [diff] [blame] | 82 | * \param in_len length of the input data in bytes |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 83 | * \param tag buffer for holding the generated tag |
| 84 | * \param tag_len length of the tag to generate in bytes |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 85 | * Must be 4, 6, 8 if cipher block size is 64 |
| 86 | * Must be 4, 6, 8 0, 14 or 16 if cipher block size is 128 |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 87 | * |
| 88 | * \return 0 if successful |
| 89 | */ |
Manuel Pégourié-Gonnard | 690083c | 2016-01-13 10:48:02 +0000 | [diff] [blame] | 90 | int mbedtls_cmac_generate( mbedtls_cmac_context *ctx, |
| 91 | const unsigned char *input, size_t in_len, |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 92 | unsigned char *tag, size_t tag_len ); |
| 93 | |
| 94 | /** |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 95 | * \brief Verify a CMAC tag. |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 96 | * |
| 97 | * \param ctx CMAC context |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 98 | * \param input buffer holding the input data |
Manuel Pégourié-Gonnard | 690083c | 2016-01-13 10:48:02 +0000 | [diff] [blame] | 99 | * \param in_len length of the input data in bytes |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 100 | * \param tag buffer holding the tag to verify |
| 101 | * \param tag_len length of the tag to verify in bytes |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 102 | * Must be 4, 6, 8 if cipher block size is 64 |
| 103 | * Must be 4, 6, 8 0, 14 or 16 if cipher block size is 128 |
| 104 | * \return 0 if successful and authenticated |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 105 | * MBEDTLS_ERR_CMAC_VERIFY_FAILED if tag does not match |
| 106 | */ |
Manuel Pégourié-Gonnard | 690083c | 2016-01-13 10:48:02 +0000 | [diff] [blame] | 107 | int mbedtls_cmac_verify( mbedtls_cmac_context *ctx, |
| 108 | const unsigned char *input, size_t in_len, |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 109 | const unsigned char *tag, size_t tag_len ); |
| 110 | |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 111 | #ifdef MBEDTLS_AES_C |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 112 | /** |
| 113 | * \brief AES-CMAC-128-PRF |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 114 | * See RFC 4615 for details |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 115 | * |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 116 | * \param key PRF key |
| 117 | * \param key_len PRF key length |
| 118 | * \param input buffer holding the input data |
Manuel Pégourié-Gonnard | 690083c | 2016-01-13 10:48:02 +0000 | [diff] [blame] | 119 | * \param in_len length of the input data in bytes |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 120 | * \param tag buffer holding the tag to verify (16 bytes) |
| 121 | * |
| 122 | * \return 0 if successful |
| 123 | */ |
Brian Murray | b0c3c43 | 2016-05-18 14:29:51 -0700 | [diff] [blame] | 124 | int mbedtls_aes_cmac_prf_128( const unsigned char *key, size_t key_len, |
Manuel Pégourié-Gonnard | 690083c | 2016-01-13 10:48:02 +0000 | [diff] [blame] | 125 | const unsigned char *input, size_t in_len, |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 126 | unsigned char tag[16] ); |
| 127 | #endif /* MBEDTLS_AES_C */ |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 128 | |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 129 | #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] | 130 | /** |
| 131 | * \brief Checkup routine |
| 132 | * |
| 133 | * \return 0 if successful, or 1 if the test failed |
| 134 | */ |
| 135 | int mbedtls_cmac_self_test( int verbose ); |
Brian Murray | b439d45 | 2016-05-19 16:02:42 -0700 | [diff] [blame^] | 136 | #endif /* MBEDTLS_SELF_TEST && ( MBEDTLS_AES_C || MBEDTLS_DES_C ) */ |
Robert Cragie | 3d23b1d | 2015-12-15 07:38:11 +0000 | [diff] [blame] | 137 | |
| 138 | #ifdef __cplusplus |
| 139 | } |
| 140 | #endif |
| 141 | |
| 142 | #endif /* MBEDTLS_CMAC_H */ |