mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
fix multiple candidates warning
This commit is contained in:
parent
2e92137d10
commit
3f4f9eff17
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ public:
|
||||||
* \param secret OUT - the 'shared secret' (must be PUB_KEY_SIZE bytes)
|
* \param secret OUT - the 'shared secret' (must be PUB_KEY_SIZE bytes)
|
||||||
* \param other IN - the second party in the exchange.
|
* \param other IN - the second party in the exchange.
|
||||||
*/
|
*/
|
||||||
void calcSharedSecret(uint8_t* secret, const Identity& other) { calcSharedSecret(secret, other.pub_key); }
|
void calcSharedSecret(uint8_t* secret, const Identity& other) const { calcSharedSecret(secret, other.pub_key); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief the ECDH key exhange, with Ed25519 public key transposed to Ex25519.
|
* \brief the ECDH key exhange, with Ed25519 public key transposed to Ex25519.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue