Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers crys_hmac_error.h Source File

crys_hmac_error.h

Go to the documentation of this file.
00001 /**************************************************************************************
00002 * Copyright (c) 2016-2017, ARM Limited or its affiliates. All rights reserved         *
00003 *                                                                                     *
00004 * This file and the related binary are licensed under the following license:          *
00005 *                                                                                     *
00006 * ARM Object Code and Header Files License, v1.0 Redistribution.                      *
00007 *                                                                                     *
00008 * Redistribution and use of object code, header files, and documentation, without     *
00009 * modification, are permitted provided that the following conditions are met:         *
00010 *                                                                                     *
00011 * 1) Redistributions must reproduce the above copyright notice and the                *
00012 *    following disclaimer in the documentation and/or other materials                 *
00013 *    provided with the distribution.                                                  *
00014 *                                                                                     *
00015 * 2) Unless to the extent explicitly permitted by law, no reverse                     *
00016 *    engineering, decompilation, or disassembly of is permitted.                      *
00017 *                                                                                     *
00018 * 3) Redistribution and use is permitted solely for the purpose of                    *
00019 *    developing or executing applications that are targeted for use                   *
00020 *    on an ARM-based product.                                                         *
00021 *                                                                                     *
00022 * DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND                  *
00023 * CONTRIBUTORS "AS IS." ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT             *
00024 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT,        *
00025 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE          *
00026 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,   *
00027 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED            *
00028 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR              *
00029 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF              *
00030 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING                *
00031 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS                  *
00032 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                        *
00033 **************************************************************************************/
00034 
00035 
00036 
00037 #ifndef CRYS_HMAC_ERROR_H
00038 #define CRYS_HMAC_ERROR_H
00039 
00040 #include "crys_error.h"
00041 
00042 #ifdef __cplusplus
00043 extern "C"
00044 {
00045 #endif
00046 
00047 /*! @file
00048 @brief This module contains the definitions of the CRYS HMAC errors.
00049 @defgroup crys_hmac_error CryptoCell HMAC specific errors
00050 @{
00051 @ingroup crys_hmac
00052 */
00053 
00054 
00055 
00056 /************************ Defines ******************************/
00057 
00058 /*! The CRYS HMAC module errors */
00059 /*! Illegal context pointer. */
00060 #define CRYS_HMAC_INVALID_USER_CONTEXT_POINTER_ERROR     (CRYS_HMAC_MODULE_ERROR_BASE + 0x0UL)
00061 /*! Illegal operation mode. */
00062 #define CRYS_HMAC_ILLEGAL_OPERATION_MODE_ERROR           (CRYS_HMAC_MODULE_ERROR_BASE + 0x1UL)
00063 /*! Context is corrupted. */
00064 #define CRYS_HMAC_USER_CONTEXT_CORRUPTED_ERROR           (CRYS_HMAC_MODULE_ERROR_BASE + 0x2UL)
00065 /*! Illegal data in pointer. */
00066 #define CRYS_HMAC_DATA_IN_POINTER_INVALID_ERROR          (CRYS_HMAC_MODULE_ERROR_BASE + 0x3UL)
00067 /*! Illegal data in size. */
00068 #define CRYS_HMAC_DATA_SIZE_ILLEGAL                      (CRYS_HMAC_MODULE_ERROR_BASE + 0x4UL)
00069 /*! Illegal result buffer pointer. */
00070 #define CRYS_HMAC_INVALID_RESULT_BUFFER_POINTER_ERROR    (CRYS_HMAC_MODULE_ERROR_BASE + 0x5UL)
00071 /*! Illegal key buffer pointer. */
00072 #define CRYS_HMAC_INVALID_KEY_POINTER_ERROR              (CRYS_HMAC_MODULE_ERROR_BASE + 0x6UL)
00073 /*! Illegal key size. */
00074 #define CRYS_HMAC_UNVALID_KEY_SIZE_ERROR                 (CRYS_HMAC_MODULE_ERROR_BASE + 0x7UL)
00075 /*! Last block was already processed (may happen if previous block was not a multiple of block size). */
00076 #define CRYS_HMAC_LAST_BLOCK_ALREADY_PROCESSED_ERROR     (CRYS_HMAC_MODULE_ERROR_BASE + 0xBUL)
00077 /*! Illegal parameters. */
00078 #define CRYS_HMAC_ILLEGAL_PARAMS_ERROR           (CRYS_HMAC_MODULE_ERROR_BASE + 0xCUL)
00079 /*! Illegal context size. */
00080 #define CRYS_HMAC_CTX_SIZES_ERROR                        (CRYS_HMAC_MODULE_ERROR_BASE + 0xEUL)
00081 /*! HMAC is not supported. */
00082 #define CRYS_HMAC_IS_NOT_SUPPORTED                       (CRYS_HMAC_MODULE_ERROR_BASE + 0xFUL)
00083 
00084 
00085 
00086 /************************ Enums ********************************/
00087 
00088 
00089 /************************ Typedefs  ****************************/
00090 
00091 
00092 /************************ Structs  ******************************/
00093 
00094 
00095 /************************ Public Variables **********************/
00096 
00097 
00098 /************************ Public Functions **********************/
00099 
00100 #ifdef __cplusplus
00101 }
00102 #endif
00103 /**
00104 @}
00105  */
00106 #endif
00107 
00108