summaryrefslogtreecommitdiff
path: root/src/libcharon/sa/authenticators/authenticator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcharon/sa/authenticators/authenticator.h')
-rw-r--r--src/libcharon/sa/authenticators/authenticator.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libcharon/sa/authenticators/authenticator.h b/src/libcharon/sa/authenticators/authenticator.h
index 89178b5cf..d30094c9b 100644
--- a/src/libcharon/sa/authenticators/authenticator.h
+++ b/src/libcharon/sa/authenticators/authenticator.h
@@ -130,12 +130,21 @@ struct authenticator_t {
* @param sent_nonce nonce sent in IKE_SA_INIT
* @param received_init received IKE_SA_INIT message data
* @param sent_init sent IKE_SA_INIT message data
+<<<<<<< HEAD
+=======
+ * @param reserved reserved bytes of the ID payload
+>>>>>>> upstream/4.5.1
* @return authenticator, NULL if not supported
*/
authenticator_t *authenticator_create_builder(
ike_sa_t *ike_sa, auth_cfg_t *cfg,
chunk_t received_nonce, chunk_t sent_nonce,
+<<<<<<< HEAD
chunk_t received_init, chunk_t sent_init);
+=======
+ chunk_t received_init, chunk_t sent_init,
+ char reserved[3]);
+>>>>>>> upstream/4.5.1
/**
* Create an authenticator to verify signatures.
@@ -146,11 +155,20 @@ authenticator_t *authenticator_create_builder(
* @param sent_nonce nonce sent in IKE_SA_INIT
* @param received_init received IKE_SA_INIT message data
* @param sent_init sent IKE_SA_INIT message data
+<<<<<<< HEAD
+=======
+ * @param reserved reserved bytes of the ID payload
+>>>>>>> upstream/4.5.1
* @return authenticator, NULL if not supported
*/
authenticator_t *authenticator_create_verifier(
ike_sa_t *ike_sa, message_t *message,
chunk_t received_nonce, chunk_t sent_nonce,
+<<<<<<< HEAD
chunk_t received_init, chunk_t sent_init);
+=======
+ chunk_t received_init, chunk_t sent_init,
+ char reserved[3]);
+>>>>>>> upstream/4.5.1
#endif /** AUTHENTICATOR_H_ @}*/