summaryrefslogtreecommitdiff
path: root/sensor/patchedBLE/src/BLESecurity.h
blob: 67c41efba8a8032accfee4b6f8cc03ad1eee80c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * BLESecurity.h
 *
 *  Created on: Dec 17, 2017
 *      Author: chegewara
 */
 
#ifndef COMPONENTS_CPP_UTILS_BLESECURITY_H_
#define COMPONENTS_CPP_UTILS_BLESECURITY_H_
#include "sdkconfig.h"
#if defined(CONFIG_BT_ENABLED)
 
#include <esp_gap_ble_api.h>
 
class BLESecurity {
public:
BLESecurity();
virtual ~BLESecurity();
void setAuthenticationMode(esp_ble_auth_req_t auth_req);
void setCapability(esp_ble_io_cap_t iocap);
void setInitEncryptionKey(uint8_t init_key);
void setRespEncryptionKey(uint8_t resp_key);
void setKeySize(uint8_t key_size = 16);
static char* esp_key_type_to_str(esp_ble_key_type_t key_type);
 
private:
esp_ble_auth_req_t m_authReq;
esp_ble_io_cap_t m_iocap;
uint8_t m_initKey;
uint8_t m_respKey;
uint8_t m_keySize;
}// BLESecurity 
 
 
/*
 * @brief Callbacks to handle GAP events related to authorization
 */
class BLESecurityCallbacks {
public:
virtual ~BLESecurityCallbacks() {};
 
/**
 * @brief Its request from peer device to input authentication pin code displayed on peer device.
 * It requires that our device is capable to input 6-digits code by end user
 * @return Return 6-digits integer value from input device
 */
virtual uint32_t onPassKeyRequest() = 0;
 
/**
 * @brief Provide us 6-digits code to perform authentication.
 * It requires that our device is capable to display this code to end user
 * @param
 */
virtual void onPassKeyNotify(uint32_t pass_key);
 
/**
 * @brief Here we can make decision if we want to let negotiate authorization with peer device or not
 * return Return true if we accept this peer device request
 */
 
virtual bool onSecurityRequest();
/**
 * Provide us information when authentication process is completed
 */
virtual void onAuthenticationComplete(esp_ble_auth_cmpl_t);
 
virtual bool onConfirmPIN(uint32_t pin);
}// BLESecurityCallbacks 
 
#endif // CONFIG_BT_ENABLED 
#endif // COMPONENTS_CPP_UTILS_BLESECURITY_H_