Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Diff: btle/btle_security.h
- Revision:
- 150:44c40836c82f
- Parent:
- 149:f6a9caa8c565
- Child:
- 356:55ede9fd5279
--- a/btle/btle_security.h Fri May 08 15:33:57 2015 +0100 +++ b/btle/btle_security.h Fri May 08 15:33:58 2015 +0100 @@ -25,9 +25,19 @@ * cryptographic algorithms and protocol exchanges that allow two devices to * securely exchange data and privately detect each other. * + * @param[in] enableBonding Allow for bonding. + * @param[in] requireMITM Require protection for man-in-the-middle attacks. + * @param[in] iocaps To specify IO capabilities of this peripheral, + * such as availability of a display or keyboard to + * support out-of-band exchanges of security data. + * @param[in] passkey To specify a static passkey. + * * @return BLE_ERROR_NONE on success. */ -ble_error_t btle_initializeSecurity(); +ble_error_t btle_initializeSecurity(bool enableBonding = true, + bool requireMITM = true, + Gap::SecurityIOCapabilities_t iocaps = Gap::IO_CAPS_NONE, + const Gap::Passkey_t passkey = NULL); /** * Get the security status of a link.