Optional secure pairing with a passkey

Support passkey pairing when requested by the central
Fix a comment and reorder warning
This commit is contained in:
James A. Jerkins
2021-12-21 16:02:01 -06:00
parent 6a5946c4e3
commit eca0588c23
3 changed files with 4 additions and 6 deletions

View File

@@ -134,9 +134,7 @@ void NimbleController::Init() {
RestoreBond();
if (!ble_gap_adv_active() && !bleController.IsConnected()) {
StartAdvertising();
}
StartAdvertising();
}
void NimbleController::StartAdvertising() {
@@ -274,7 +272,7 @@ int NimbleController::OnGAPEvent(ble_gap_event* event) {
* display capability only so we only handle the "display" action here.
*
* Standards insist that the rand() PRNG be deterministic.
* Use the nimble TRNG here since rand() is predictable.
* Use the tinycrypt prng here since rand() is predictable.
*/
NRF_LOG_INFO("Security event : BLE_GAP_EVENT_PASSKEY_ACTION");
if (event->passkey.params.action == BLE_SM_IOACT_DISP) {