diff options
Diffstat (limited to 'src/protocols/ec25519_fhmqvc/handshake.c')
-rw-r--r-- | src/protocols/ec25519_fhmqvc/handshake.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/protocols/ec25519_fhmqvc/handshake.c b/src/protocols/ec25519_fhmqvc/handshake.c index 4e519fa..5d3e57e 100644 --- a/src/protocols/ec25519_fhmqvc/handshake.c +++ b/src/protocols/ec25519_fhmqvc/handshake.c @@ -204,6 +204,7 @@ static inline bool secure_handshake(const fastd_handshake_t *handshake) { } +/** Checks if an ecc25519 work structure represents a valid curve point */ static bool check_key(const ecc_25519_work_t *key) { ecc_25519_work_t work; @@ -217,6 +218,7 @@ static bool check_key(const ecc_25519_work_t *key) { return true; } +/** Checks if public key is a valid curve point */ bool fastd_protocol_ec25519_fhmqvc_check_key(const ecc_int256_t *key) { ecc_25519_work_t work; |