summaryrefslogtreecommitdiffhomepage
path: root/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h
diff options
context:
space:
mode:
authorFlorent Duchon2012-12-26 17:38:10 +0100
committerFlorent Duchon2013-02-13 21:24:56 +0100
commit22abd06132445a55a1a0266897920f26634825c1 (patch)
treeeb56bd5654cd3a443b51ee3ea61cc9bbef6f185e /digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h
parentd3807d11ae66d862d5a41cae082288de4b23465c (diff)
digital/beacon: remove obsolete bitcloud stack
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h b/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h
deleted file mode 100644
index 6dee63df..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/ZCL/include/zclZllSecurity.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/**************************************************************************//**
- \file zclZllSecurity.h
-
- \brief
- Functions and constants used by the ZLL security module.
-
- \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:
- 22.06.11 A. Taradov - Created.
-******************************************************************************/
-#ifndef _ZCLZLLSECURITY_H
-#define _ZCLZLLSECURITY_H
-
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <types.h>
-#include <sspCommon.h>
-
-/******************************************************************************
- Definitions section
-******************************************************************************/
-#define ZCL_ZLL_DEVELOPMENT_KEY_INDEX 0
-#define ZCL_ZLL_MASTER_KEY_INDEX 4
-#define ZCL_ZLL_CERTIFICATION_KEY_INDEX 15
-
-//#define ZCL_ZLL_SUPPORTED_KEY_INDEX ZCL_ZLL_CERTIFICATION_KEY_INDEX
-//#define ZCL_ZLL_SUPPORTED_SECURITY_KEYS (1u << ZCL_ZLL_SUPPORTED_KEY_INDEX)
-
-#define ZCL_ZLL_SUPPORTED_KEY_INDEX ZCL_ZLL_DEVELOPMENT_KEY_INDEX
-#define ZCL_ZLL_SUPPORTED_SECURITY_KEYS (1u << ZCL_ZLL_DEVELOPMENT_KEY_INDEX)
-
-/*! Certification key */
-#define ZCL_ZLL_SECURITY_KEY "\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf"
-
-/******************************************************************************
- Prototypes section
-******************************************************************************/
-
-/**************************************************************************//**
-\brief Encrypt security key
-\param[in] text - key to be encrypted
-\param[in] callback - function to be called after encryption is finished
-******************************************************************************/
-void zclZllEncryptKey(uint8_t text[SECURITY_BLOCK_SIZE], void (*callback)(void));
-
-/**************************************************************************//**
-\brief Decrypt security key
-\param[in] text - key to be decrypted
-\param[in] callback - function to be called after decryption is finished
-******************************************************************************/
-void zclZllDecryptKey(uint8_t text[SECURITY_BLOCK_SIZE], void (*callback)(void));
-
-#endif // _ZCLZLLSECURITY_H
-
-// eof zclZllSecurity.h