Skip to content

Commit 3f9186f

Browse files
committed
GenericSecurityManager: Fix crypto_toolbox_f4 signature.
The type exposed in the header file were not aligned to the one used in the implementation: ble::public_key_t instead of ble::public_key_coord_t.
1 parent e43d21d commit 3f9186f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/FEATURE_BLE/ble/generic/GenericSecurityManager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,8 @@ class GenericSecurityManager : public SecurityManager,
354354
* @return true if cryptography functioned worked
355355
*/
356356
static bool crypto_toolbox_f4(
357-
const public_key_t &U,
358-
const public_key_t &V,
357+
const public_key_coord_t &U,
358+
const public_key_coord_t &V,
359359
const oob_lesc_value_t &X,
360360
oob_confirm_t &confirm
361361
);

0 commit comments

Comments
 (0)