AESCCM.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, 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  */
335 #ifndef ti_drivers_AESCCM__include
336 #define ti_drivers_AESCCM__include
337 
338 #ifdef __cplusplus
339 extern "C" {
340 #endif
341 
342 #include <stdbool.h>
343 #include <stddef.h>
344 #include <stdint.h>
345 
347 
365 #define AESCCM_CMD_RESERVED (32)
366 
379 #define AESCCM_STATUS_RESERVED (-32)
380 
394 #define AESCCM_STATUS_SUCCESS (0)
395 
402 #define AESCCM_STATUS_ERROR (-1)
403 
411 #define AESCCM_STATUS_UNDEFINEDCMD (-2)
412 
421 #define AESCCM_STATUS_RESOURCE_UNAVAILABLE (-3)
422 
430 #define AESCCM_STATUS_MAC_INVALID (-4)
431 
432 
445 /* Add AESCCM_CMD_<commands> here */
446 
455 
493 
497 typedef enum AESCCM_Mode_ {
500 } AESCCM_Mode;
501 
506 typedef struct AESCCM_Operation_ {
508  uint8_t *aad;
512  uint8_t *input;
517  uint8_t *output;
523  uint8_t *nonce;
529  uint8_t *mac;
535  size_t aadLength;
539  size_t inputLength;
543  uint8_t nonceLength;
546  uint8_t macLength;
554 
558 typedef enum AESCCM_OperationType_ {
562 
574 typedef struct AESCCM_Config_ {
576  void *object;
577 
579  void const *hwAttrs;
580 } AESCCM_Config;
581 
590 typedef void (*AESCCM_CallbackFxn) (AESCCM_Handle handle,
591  int_fast16_t returnValue,
592  AESCCM_Operation *operation,
593  AESCCM_OperationType operationType);
594 
603 typedef struct AESCCM_Params_ {
606  uint32_t timeout;
609  void *custom;
612 } AESCCM_Params;
613 
620 
629 void AESCCM_init(void);
630 
643 void AESCCM_Params_init(AESCCM_Params *params);
644 
662 AESCCM_Handle AESCCM_open(uint_least8_t index, AESCCM_Params *params);
663 
673 void AESCCM_close(AESCCM_Handle handle);
674 
712 int_fast16_t AESCCM_control(AESCCM_Handle handle, uint32_t cmd, void *args);
713 
714 
715 
724 void AESCCM_Operation_init(AESCCM_Operation *operationStruct);
725 
742 int_fast16_t AESCCM_oneStepEncrypt(AESCCM_Handle handle, AESCCM_Operation *operationStruct);
743 
760 int_fast16_t AESCCM_oneStepDecrypt(AESCCM_Handle handle, AESCCM_Operation *operationStruct);
761 
762 #ifdef __cplusplus
763 }
764 #endif
765 
766 #endif /* ti_drivers_AESCCM__include */
uint8_t nonceLength
Definition: AESCCM.h:543
CCM Parameters.
Definition: AESCCM.h:603
Definition: AESCCM.h:488
The CryptoKey type is an opaque representation of a cryptographic key.
AESCCM_ReturnBehavior returnBehavior
Definition: AESCCM.h:604
AESCCM_OperationType_
Enum for the operation types supported by the driver.
Definition: AESCCM.h:558
uint8_t macLength
Definition: AESCCM.h:546
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:478
void const * hwAttrs
Definition: AESCCM.h:579
CryptoKey datastructure.
Definition: CryptoKey.h:210
const AESCCM_Params AESCCM_defaultParams
Default AESCCM_Params structure.
void * custom
Definition: AESCCM.h:609
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:506
struct AESCCM_Config_ * AESCCM_Handle
A handle that is returned from an AESCCM_open() call.
Definition: AESCCM.h:454
uint8_t * output
Definition: AESCCM.h:517
Definition: AESCCM.h:499
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:529
AESCCM_ReturnBehavior_
The way in which CCM function calls return after performing an encryption + authentication or decrypt...
Definition: AESCCM.h:477
bool nonceInternallyGenerated
Definition: AESCCM.h:549
enum AESCCM_Mode_ AESCCM_Mode
Enum for the direction of the CCM operation.
Definition: AESCCM.h:484
CryptoKey * key
Definition: AESCCM.h:507
uint8_t * input
Definition: AESCCM.h:512
void AESCCM_Operation_init(AESCCM_Operation *operationStruct)
Function to initialize a 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:576
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:590
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.
int_fast16_t AESCCM_control(AESCCM_Handle handle, uint32_t cmd, void *args)
Function performs implementation specific features on a given AESCCM_Handle.
uint8_t * nonce
Definition: AESCCM.h:523
void AESCCM_init(void)
This function initializes the CCM module.
size_t inputLength
Definition: AESCCM.h:539
Definition: AESCCM.h:560
uint32_t timeout
Definition: AESCCM.h:606
enum AESCCM_OperationType_ AESCCM_OperationType
Enum for the operation types supported by the driver.
Definition: AESCCM.h:559
AESCCM Global configuration.
Definition: AESCCM.h:574
Definition: AESCCM.h:498
AESCCM_CallbackFxn callbackFxn
Definition: AESCCM.h:605
AESCCM_Mode_
Enum for the direction of the CCM operation.
Definition: AESCCM.h:497
AESCCM_Handle AESCCM_open(uint_least8_t index, AESCCM_Params *params)
This function opens a given CCM peripheral.
size_t aadLength
Definition: AESCCM.h:535
uint8_t * aad
Definition: AESCCM.h:508
Copyright 2017, Texas Instruments Incorporated