diff options
Diffstat (limited to 'src/protocols')
-rw-r--r-- | src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h | 5 | ||||
-rw-r--r-- | src/protocols/ec25519_fhmqvc/handshake.h | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h b/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h index 40e9e85..19d2cbf 100644 --- a/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h +++ b/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h @@ -24,8 +24,7 @@ */ -#ifndef _FASTD_PROTOCOL_EC25519_FHMQVC_H_ -#define _FASTD_PROTOCOL_EC25519_FHMQVC_H_ +#pragma once #include "../../fastd.h" #include "../../method.h" @@ -106,5 +105,3 @@ static inline void hexdump(char out[65], const unsigned char d[32]) { static inline bool is_session_valid(fastd_context_t *ctx, const protocol_session_t *session) { return (session->method && session->method->provider->session_is_valid(ctx, session->method_state)); } - -#endif /* _FASTD_PROTOCOL_EC25519_FHMQVC_H_ */ diff --git a/src/protocols/ec25519_fhmqvc/handshake.h b/src/protocols/ec25519_fhmqvc/handshake.h index 04eb571..867b0fa 100644 --- a/src/protocols/ec25519_fhmqvc/handshake.h +++ b/src/protocols/ec25519_fhmqvc/handshake.h @@ -24,8 +24,7 @@ */ -#ifndef _FASTD_PROTOCOL_EC25519_FHMQVC_HANDSHAKE_H_ -#define _FASTD_PROTOCOL_EC25519_FHMQVC_HANDSHAKE_H_ +#pragma once #include "ec25519_fhmqvc.h" @@ -51,5 +50,3 @@ static inline bool is_handshake_key_valid(fastd_context_t *ctx, const handshake_ static inline bool is_handshake_key_preferred(fastd_context_t *ctx, const handshake_key_t *handshake_key) { return !fastd_timed_out(ctx, &handshake_key->preferred_till); } - -#endif /* _FASTD_PROTOCOL_EC25519_FHMQVC_HANDSHAKE_H_ */ |