AESCCM.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2018, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
326 #ifndef ti_drivers_AESCCM__include
327 #define ti_drivers_AESCCM__include
328 
329 #ifdef __cplusplus
330 extern "C" {
331 #endif
332 
333 #include <stdbool.h>
334 #include <stddef.h>
335 #include <stdint.h>
336 
338 
351 #define AESCCM_STATUS_RESERVED (-32)
352 
359 #define AESCCM_STATUS_SUCCESS (0)
360 
367 #define AESCCM_STATUS_ERROR (-1)
368 
377 #define AESCCM_STATUS_RESOURCE_UNAVAILABLE (-2)
378 
386 #define AESCCM_STATUS_MAC_INVALID (-3)
387 
391 #define AESCCM_STATUS_CANCELED (-4)
392 
397 
435 
439 typedef enum AESCCM_Mode_ {
442 } AESCCM_Mode;
443 
448 typedef struct AESCCM_Operation_ {
450  uint8_t *aad;
454  uint8_t *input;
459  uint8_t *output;
465  uint8_t *nonce;
471  uint8_t *mac;
477  size_t aadLength;
481  size_t inputLength;
485  uint8_t nonceLength;
488  uint8_t macLength;
498 
502 typedef enum AESCCM_OperationType_ {
506 
518 typedef struct AESCCM_Config_ {
520  void *object;
521 
523  void const *hwAttrs;
524 } AESCCM_Config;
525 
541 typedef void (*AESCCM_CallbackFxn) (AESCCM_Handle handle,
542  int_fast16_t returnValue,
543  AESCCM_Operation *operation,
544  AESCCM_OperationType operationType);
545 
554 typedef struct AESCCM_Params_ {
557  uint32_t timeout;
560  void *custom;
563 } AESCCM_Params;
564 
571 
580 void AESCCM_init(void);
581 
594 void AESCCM_Params_init(AESCCM_Params *params);
595 
613 AESCCM_Handle AESCCM_open(uint_least8_t index, AESCCM_Params *params);
614 
624 void AESCCM_close(AESCCM_Handle handle);
625 
634 void AESCCM_Operation_init(AESCCM_Operation *operationStruct);
635 
652 int_fast16_t AESCCM_oneStepEncrypt(AESCCM_Handle handle, AESCCM_Operation *operationStruct);
653 
670 int_fast16_t AESCCM_oneStepDecrypt(AESCCM_Handle handle, AESCCM_Operation *operationStruct);
671 
684 int_fast16_t AESCCM_cancelOperation(AESCCM_Handle handle);
685 
686 #ifdef __cplusplus
687 }
688 #endif
689 
690 #endif /* ti_drivers_AESCCM__include */
uint8_t nonceLength
Definition: AESCCM.h:485
CCM Parameters.
Definition: AESCCM.h:554
Definition: AESCCM.h:430
The CryptoKey type is an opaque representation of a cryptographic key.
AESCCM_ReturnBehavior returnBehavior
Definition: AESCCM.h:555
AESCCM_OperationType_
Enum for the operation types supported by the driver.
Definition: AESCCM.h:502
uint8_t macLength
Definition: AESCCM.h:488
int_fast16_t AESCCM_oneStepDecrypt(AESCCM_Handle handle, AESCCM_Operation *operationStruct)
Function to perform an AESCCM decryption + verification operation in one call.
Definition: AESCCM.h:420
void const * hwAttrs
Definition: AESCCM.h:523
CryptoKey datastructure.
Definition: CryptoKey.h:210
const AESCCM_Params AESCCM_defaultParams
Default AESCCM_Params structure.
void * custom
Definition: AESCCM.h:560
enum AESCCM_ReturnBehavior_ AESCCM_ReturnBehavior
The way in which CCM function calls return after performing an encryption + authentication or decrypt...
int_fast16_t AESCCM_oneStepEncrypt(AESCCM_Handle handle, AESCCM_Operation *operationStruct)
Function to perform an AESCCM encryption + authentication operation in one call.
Struct containing the parameters required for encrypting/decrypting and authenticating/verifying a me...
Definition: AESCCM.h:448
int_fast16_t AESCCM_cancelOperation(AESCCM_Handle handle)
Cancels an ongoing AESCCM operation.
struct AESCCM_Config_ * AESCCM_Handle
A handle that is returned from an AESCCM_open() call.
Definition: AESCCM.h:396
uint8_t * output
Definition: AESCCM.h:459
Definition: AESCCM.h:441
void AESCCM_Params_init(AESCCM_Params *params)
Function to initialize the AESCCM_Params struct to its defaults.
struct AESCCM_Params_ AESCCM_Params
CCM Parameters.
uint8_t * mac
Definition: AESCCM.h:471
AESCCM_ReturnBehavior_
The way in which CCM function calls return after performing an encryption + authentication or decrypt...
Definition: AESCCM.h:419
bool nonceInternallyGenerated
Definition: AESCCM.h:493
enum AESCCM_Mode_ AESCCM_Mode
Enum for the direction of the CCM operation.
Definition: AESCCM.h:426
CryptoKey * key
Definition: AESCCM.h:449
uint8_t * input
Definition: AESCCM.h:454
void AESCCM_Operation_init(AESCCM_Operation *operationStruct)
Function to initialize an AESCCM_Operation struct to its defaults.
struct AESCCM_Operation_ AESCCM_Operation
Struct containing the parameters required for encrypting/decrypting and authenticating/verifying a me...
void * object
Definition: AESCCM.h:520
void(* AESCCM_CallbackFxn)(AESCCM_Handle handle, int_fast16_t returnValue, AESCCM_Operation *operation, AESCCM_OperationType operationType)
The definition of a callback function used by the AESCCM driver when used in AESCCM_RETURN_BEHAVIOR_C...
Definition: AESCCM.h:541
void AESCCM_close(AESCCM_Handle handle)
Function to close a CCM peripheral specified by the CCM handle.
struct AESCCM_Config_ AESCCM_Config
AESCCM Global configuration.
uint8_t * nonce
Definition: AESCCM.h:465
void AESCCM_init(void)
This function initializes the CCM module.
size_t inputLength
Definition: AESCCM.h:481
Definition: AESCCM.h:504
uint32_t timeout
Definition: AESCCM.h:557
enum AESCCM_OperationType_ AESCCM_OperationType
Enum for the operation types supported by the driver.
Definition: AESCCM.h:503
AESCCM Global configuration.
Definition: AESCCM.h:518
Definition: AESCCM.h:440
AESCCM_CallbackFxn callbackFxn
Definition: AESCCM.h:556
AESCCM_Mode_
Enum for the direction of the CCM operation.
Definition: AESCCM.h:439
AESCCM_Handle AESCCM_open(uint_least8_t index, AESCCM_Params *params)
This function opens a given CCM peripheral.
size_t aadLength
Definition: AESCCM.h:477
uint8_t * aad
Definition: AESCCM.h:450
© Copyright 1995-2018, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale