From a0eea1a7ac3e9c76329c38dcab301664ef283ced Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Thu, 8 Dec 2011 15:55:43 +0100 Subject: [PATCH] Defined hybrid IKEv1 authentication methods --- src/libcharon/sa/authenticators/authenticator.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/libcharon/sa/authenticators/authenticator.h b/src/libcharon/sa/authenticators/authenticator.h index 3c1733388..5a8d26d1e 100644 --- a/src/libcharon/sa/authenticators/authenticator.h +++ b/src/libcharon/sa/authenticators/authenticator.h @@ -93,6 +93,16 @@ enum auth_method_t { * IKEv1 responder XAUTH with RSA, outside of IANA range */ AUTH_XAUTH_RESP_RSA, + + /** + * IKEv1 initiator XAUTH, responder RSA, outside of IANA range + */ + AUTH_HYBRID_INIT_RSA, + + /** + * IKEv1 responder XAUTH, initiator RSA, outside of IANA range + */ + AUTH_HYBRID_RESP_RSA, }; /**