From 56fb0f0b3a27cd63a56651aa02d5b062dad0f471 Mon Sep 17 00:00:00 2001 From: Clavister OpenSource Date: Tue, 29 Nov 2011 10:42:31 +0100 Subject: [PATCH] IKEv1 XAuth: Added XAuthResp authentication modes. --- 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 81164772d..1161583c9 100644 --- a/src/libcharon/sa/authenticators/authenticator.h +++ b/src/libcharon/sa/authenticators/authenticator.h @@ -79,10 +79,20 @@ enum auth_method_t { */ AUTH_XAUTH_INIT_PSK = 256, + /** + * IKEv1 responder XAUTH with PSK, outside of IANA range + */ + AUTH_XAUTH_RESP_PSK, + /** * IKEv1 initiator XAUTH with RSA, outside of IANA range */ AUTH_XAUTH_INIT_RSA, + + /** + * IKEv1 responder XAUTH with RSA, outside of IANA range + */ + AUTH_XAUTH_RESP_RSA, }; /**