Line endings wrong

This commit is contained in:
Robert Cragie 2015-12-15 07:38:11 +00:00 committed by Simon Butcher
parent f261ef07ee
commit 3d23b1d5ed
2 changed files with 666 additions and 666 deletions

View File

@ -1,139 +1,139 @@
/** /**
* \file cmac.h * \file cmac.h
* *
* \brief The CMAC Mode for Authentication * \brief The CMAC Mode for Authentication
* *
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may * Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. * not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* This file is part of mbed TLS (https://tls.mbed.org) * This file is part of mbed TLS (https://tls.mbed.org)
*/ */
#ifndef MBEDTLS_CMAC_H #ifndef MBEDTLS_CMAC_H
#define MBEDTLS_CMAC_H #define MBEDTLS_CMAC_H
#include "cipher.h" #include "cipher.h"
#define MBEDTLS_ERR_CMAC_BAD_INPUT -0x0011 /**< Bad input parameters to function. */ #define MBEDTLS_ERR_CMAC_BAD_INPUT -0x0011 /**< Bad input parameters to function. */
#define MBEDTLS_ERR_CMAC_VERIFY_FAILED -0x0013 /**< Verification failed. */ #define MBEDTLS_ERR_CMAC_VERIFY_FAILED -0x0013 /**< Verification failed. */
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
/** /**
* \brief CCM context structure * \brief CCM context structure
*/ */
typedef struct { typedef struct {
mbedtls_cipher_context_t cipher_ctx; /*!< cipher context used */ mbedtls_cipher_context_t cipher_ctx; /*!< cipher context used */
unsigned char K1[16]; unsigned char K1[16];
unsigned char K2[16]; unsigned char K2[16];
} }
mbedtls_cmac_context; mbedtls_cmac_context;
/** /**
* \brief Initialize CMAC context (just makes references valid) * \brief Initialize CMAC context (just makes references valid)
* Makes the context ready for mbedtls_cmac_setkey() or * Makes the context ready for mbedtls_cmac_setkey() or
* mbedtls_cmac_free(). * mbedtls_cmac_free().
* *
* \param ctx CMAC context to initialize * \param ctx CMAC context to initialize
*/ */
void mbedtls_cmac_init( mbedtls_cmac_context *ctx ); void mbedtls_cmac_init( mbedtls_cmac_context *ctx );
/** /**
* \brief CMAC initialization * \brief CMAC initialization
* *
* \param ctx CMAC context to be initialized * \param ctx CMAC context to be initialized
* \param cipher cipher to use (a 128-bit block cipher) * \param cipher cipher to use (a 128-bit block cipher)
* \param key encryption key * \param key encryption key
* \param keybits key size in bits (must be acceptable by the cipher) * \param keybits key size in bits (must be acceptable by the cipher)
* *
* \return 0 if successful, or a cipher specific error code * \return 0 if successful, or a cipher specific error code
*/ */
int mbedtls_cmac_setkey( mbedtls_cmac_context *ctx, int mbedtls_cmac_setkey( mbedtls_cmac_context *ctx,
mbedtls_cipher_id_t cipher, mbedtls_cipher_id_t cipher,
const unsigned char *key, const unsigned char *key,
unsigned int keybits ); unsigned int keybits );
/** /**
* \brief Free a CMAC context and underlying cipher sub-context * \brief Free a CMAC context and underlying cipher sub-context
* *
* \param ctx CMAC context to free * \param ctx CMAC context to free
*/ */
void mbedtls_cmac_free( mbedtls_cmac_context *ctx ); void mbedtls_cmac_free( mbedtls_cmac_context *ctx );
/** /**
* \brief CMAC generate * \brief CMAC generate
* *
* \param ctx CMAC context * \param ctx CMAC context
* \param length length of the input data in bytes * \param length length of the input data in bytes
* \param input buffer holding the input data * \param input buffer holding the input data
* \param tag buffer for holding the generated tag * \param tag buffer for holding the generated tag
* \param tag_len length of the tag to generate in bytes * \param tag_len length of the tag to generate in bytes
* must be between 4, 6, 8, 10, 14 or 16 * must be between 4, 6, 8, 10, 14 or 16
* *
* \return 0 if successful * \return 0 if successful
*/ */
int mbedtls_cmac_generate( mbedtls_cmac_context *ctx, size_t length, int mbedtls_cmac_generate( mbedtls_cmac_context *ctx, size_t length,
const unsigned char *input, const unsigned char *input,
unsigned char *tag, size_t tag_len ); unsigned char *tag, size_t tag_len );
/** /**
* \brief CMAC verify * \brief CMAC verify
* *
* \param ctx CMAC context * \param ctx CMAC context
* \param length length of the input data in bytes * \param length length of the input data in bytes
* \param input buffer holding the input data * \param input buffer holding the input data
* \param tag buffer holding the tag to verify * \param tag buffer holding the tag to verify
* \param tag_len length of the tag to verify in bytes * \param tag_len length of the tag to verify in bytes
* must be 4, 6, 8, 10, 14 or 16 * must be 4, 6, 8, 10, 14 or 16
* *
* \return 0 if successful and authenticated, * \return 0 if successful and authenticated,
* MBEDTLS_ERR_CMAC_VERIFY_FAILED if tag does not match * MBEDTLS_ERR_CMAC_VERIFY_FAILED if tag does not match
*/ */
int mbedtls_cmac_verify( mbedtls_cmac_context *ctx, size_t length, int mbedtls_cmac_verify( mbedtls_cmac_context *ctx, size_t length,
const unsigned char *input, const unsigned char *input,
const unsigned char *tag, size_t tag_len ); const unsigned char *tag, size_t tag_len );
/** /**
* \brief AES-CMAC-128-PRF * \brief AES-CMAC-128-PRF
* *
* \param ctx CMAC context * \param ctx CMAC context
* \param length length of the input data in bytes * \param length length of the input data in bytes
* \param key PRF key * \param key PRF key
* \param key_len PRF key length * \param key_len PRF key length
* \param input buffer holding the input data * \param input buffer holding the input data
* \param tag buffer holding the tag to verify (16 bytes) * \param tag buffer holding the tag to verify (16 bytes)
* *
* \return 0 if successful * \return 0 if successful
*/ */
int mbedtls_aes_cmac_prf_128( mbedtls_cmac_context *ctx, size_t length, int mbedtls_aes_cmac_prf_128( mbedtls_cmac_context *ctx, size_t length,
const unsigned char *key, size_t key_len, const unsigned char *key, size_t key_len,
const unsigned char *input, const unsigned char *input,
unsigned char *tag ); unsigned char *tag );
#if defined(MBEDTLS_SELF_TEST) && defined(MBEDTLS_AES_C) #if defined(MBEDTLS_SELF_TEST) && defined(MBEDTLS_AES_C)
/** /**
* \brief Checkup routine * \brief Checkup routine
* *
* \return 0 if successful, or 1 if the test failed * \return 0 if successful, or 1 if the test failed
*/ */
int mbedtls_cmac_self_test( int verbose ); int mbedtls_cmac_self_test( int verbose );
#endif /* MBEDTLS_SELF_TEST && MBEDTLS_AES_C */ #endif /* MBEDTLS_SELF_TEST && MBEDTLS_AES_C */
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif /* MBEDTLS_CMAC_H */ #endif /* MBEDTLS_CMAC_H */

File diff suppressed because it is too large Load Diff