summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/Security/ServiceProvider/include/private/sspSfpHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/Security/ServiceProvider/include/private/sspSfpHandler.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/Security/ServiceProvider/include/private/sspSfpHandler.h134
1 files changed, 0 insertions, 134 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/Security/ServiceProvider/include/private/sspSfpHandler.h b/digital/beacon/src/Bitcloud_stack/Components/Security/ServiceProvider/include/private/sspSfpHandler.h
deleted file mode 100644
index 3cc50904..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/Security/ServiceProvider/include/private/sspSfpHandler.h
+++ /dev/null
@@ -1,134 +0,0 @@
-/**************************************************************************//**
- \file sspSfpHandler.h
-
- \brief SFP routine header file.
-
- \author
- Atmel Corporation: http://www.atmel.com \n
- Support email: avr@atmel.com
-
- Copyright (c) 2008-2011, Atmel Corporation. All rights reserved.
- Licensed under Atmel's Limited License Agreement (BitCloudTM).
-
- \internal
- History:
- 2006 - VGribanovsky created.
- 29/11/2007 - ALuzhetsky API corrected.
-******************************************************************************/
-
-#ifndef _SSPSFPHANDLER_H
-#define _SSPSFPHANDLER_H
-
-/******************************************************************************
- Includes section.
-******************************************************************************/
-#include <bcEndian.h>
-#include <sspManager.h>
-#include <sspSfp.h>
-#include <sspAesHandler.h>
-#include <sspCcmHandler.h>
-
-/******************************************************************************
- Types definition section.
-******************************************************************************/
-/**************************************************************************//**
- \brief TBD
-******************************************************************************/
-typedef enum
-{
- SFP_STATE_IDLE,
- SFP_STATE_ENCRYPTION_KEY_TRANSFORMING,
- SFP_STATE_ENCRYPTION_AUTHENTIC,
- SFP_STATE_ENCRYPTION_ENCRYPT,
- SFP_STATE_DECRYPTION_KEY_TRANSFORMING,
- SFP_STATE_DECRYPTION_AUTHENTIC,
- SFP_STATE_DECRYPTION_ENCRYPT,
- SFP_STATE_DECRYPTION_MIC_CHECK
-} SspSfpHandlerState_t;
-
-/**************************************************************************//**
- \brief TBD
-******************************************************************************/
-typedef struct
-{
- SspSfpHandlerState_t sfpState;
- uint8_t nonce[CCM_NONCE_SIZE];
- uint8_t transformedKey[SECURITY_KEY_SIZE];
- uint8_t mic[CCM_MIC_MAX_SIZE];
- uint8_t auxiliaryHeaderLength;
- union
- {
- CcmReq_t ccmReq;
-#ifdef _LINK_SECURITY_
- SspKeyedHashMacReq_t hashMacReq;
-#endif // _LINK_SECURITY_
- };
- BEGIN_PACK
- struct PACK
- {
- volatile uint8_t keyExpander[16];
- uint8_t text;
- volatile uint8_t bitsExpander[16];
- }; // For hash function
- END_PACK
-} SspSfpHandlerMem_t;
-
-/**************************************************************************//**
- \brief Security Control field format.
-******************************************************************************/
-BEGIN_PACK
-typedef struct PACK
-{
- LITTLE_ENDIAN_OCTET(4,(
- uint8_t securityLevel : 3,
- uint8_t keyIdentifier : 2,
- uint8_t extendedNonce : 1,
- uint8_t reserved : 2
- ))
-} SecurityCtrlField_t;
-END_PACK
-
-/******************************************************************************
- Prototypes section.
-******************************************************************************/
-/******************************************************************************
- Encrypts frame. Encoding is based on incoming param which are extracted from
- SSP_EncryptFrameReq param.
- Parameters:
- none.
- Return:
- none.
-******************************************************************************/
-void sspEncryptFrameReqHandler(void);
-
-/******************************************************************************
- Decrypts frame. Decrypting is based on incoming param which are extracted from
- SSP_DecryptFrameReq param.
- Parameters:
- none.
- Return:
- none.
-******************************************************************************/
-void sspDecryptFrameReqHandler(void);
-
-/******************************************************************************
- Parses auxiliary frame header.
- Parameters:
- param - contains pointer to the frame and parameters to be initialized.
- Return:
- Auxiliary header length.
-******************************************************************************/
-uint8_t sspParseAuxiliaryHeaderHandler(SSP_ParseAuxiliaryHeader_t *param);
-
-/******************************************************************************
- Security Frame Processor Handler's task.
- Parameters:
- none
- Return:
- none.
-******************************************************************************/
-void sspSfpTaskHandler(void);
-
-#endif //_SSPSFPHANDLER_H
-
-// eof sspSfpHandler.h