Skip to content

Commit

Permalink
Add static pin support (#4078)
Browse files Browse the repository at this point in the history
  • Loading branch information
chegewara authored Sep 30, 2020
1 parent fa8a1c3 commit b7c5e50
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions libraries/BLE/src/BLESecurity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,17 @@ void BLESecurity::setKeySize(uint8_t key_size) {
esp_ble_gap_set_security_param(ESP_BLE_SM_MAX_KEY_SIZE, &m_keySize, sizeof(uint8_t));
} //setKeySize

/**
* Setup for static PIN connection, call it first and then call setAuthenticationMode eventually to change it
*/
void BLESecurity::setStaticPIN(uint32_t pin){
uint32_t passkey = pin;
esp_ble_gap_set_security_param(ESP_BLE_SM_SET_STATIC_PASSKEY, &passkey, sizeof(uint32_t));
setCapability(ESP_IO_CAP_OUT);
setKeySize();
setAuthenticationMode(ESP_LE_AUTH_REQ_SC_ONLY);
setInitEncryptionKey(ESP_BLE_ENC_KEY_MASK | ESP_BLE_ID_KEY_MASK);
}

/**
* @brief Debug function to display what keys are exchanged by peers
Expand Down
1 change: 1 addition & 0 deletions libraries/BLE/src/BLESecurity.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class BLESecurity {
void setInitEncryptionKey(uint8_t init_key);
void setRespEncryptionKey(uint8_t resp_key);
void setKeySize(uint8_t key_size = 16);
void setStaticPIN(uint32_t pin);
static char* esp_key_type_to_str(esp_ble_key_type_t key_type);

private:
Expand Down

0 comments on commit b7c5e50

Please sign in to comment.