summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkTxSecurity.h
diff options
context:
space:
mode:
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkTxSecurity.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkTxSecurity.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkTxSecurity.h b/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkTxSecurity.h
deleted file mode 100644
index fc9d0120..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkTxSecurity.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/**************************************************************************//**
- \file nwkTxSecurity.h
-
- \brief Interface of transmission security.
-
- \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:
- 2009-08-31 M. Gekk - Created.
- Last change:
- $Id: nwkTxSecurity.h 17721 2011-06-27 10:38:42Z mgekk $
- ******************************************************************************/
-#if !defined _NWK_TX_SECURITY_H
-#define _NWK_TX_SECURITY_H
-
-#if defined _SECURITY_
-/******************************************************************************
- Includes section
- ******************************************************************************/
-#include <nwkConfig.h>
-#include <mac.h>
-#include <sspSfp.h>
-#include <nwkTx.h>
-
-/******************************************************************************
- Prototypes section
- ******************************************************************************/
-/**************************************************************************//**
- \brief Check of that enciphering for a proceeding network packet is required.
-
- \param[in] outPkt - pointer to a network output packet.
- \return 'true' if encrypting is required otherwise 'false'
- ******************************************************************************/
-NWK_PRIVATE bool nwkIsEncryptingRequired(NwkOutputPacket_t *const outPkt);
-
-/**************************************************************************//**
- \brief Request to encrypt an output network packet.
-
- \param[in] encryptReq - encrypt frame primitive's parameters structure.
- \param[in] macDataReq - MCPS-DATA request primitive's parameters structure.
- \return None.
- ******************************************************************************/
-NWK_PRIVATE void nwkEncryptOutputPacket(SSP_EncryptFrameReq_t *const encryptReq,
- const MAC_DataReq_t *const macDataReq);
-
-/**************************************************************************//**
- \brief Request to decrypt an output network packet.
-
- \param[in] decryptReq - decrypt frame primitive's parameters structure.
- \param[in] macDataReq - MCPS-DATA request primitive's parameters structure.
- \return None.
- ******************************************************************************/
-NWK_PRIVATE void nwkDecryptOutputPacket(SSP_DecryptFrameReq_t *const decryptReq,
- const MAC_DataReq_t *const macDataReq);
-
-#else /* _SECURITY_ */
-
-#define nwkIsEncryptingRequired(outPkt) false
-#define nwkIsDecryptingRequired(outPkt) false
-
-#endif /* _SECURITY_ */
-#endif /* _NWK_TX_SECURITY_H */
-/** eof nwkTxSecurity.h */
-