diff options
author | Martin Willi <martin@revosec.ch> | 2011-12-08 15:55:43 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-03-20 17:31:15 +0100 |
commit | a0eea1a7ac3e9c76329c38dcab301664ef283ced (patch) | |
tree | a5ae8306bc9bc6b2e896c19bf587d6ab8c01c1c9 /src/libcharon/sa/authenticators | |
parent | c29fba51aa0001bb7c50cf30e482cdff402058d5 (diff) | |
download | strongswan-a0eea1a7ac3e9c76329c38dcab301664ef283ced.tar.bz2 strongswan-a0eea1a7ac3e9c76329c38dcab301664ef283ced.tar.xz |
Defined hybrid IKEv1 authentication methods
Diffstat (limited to 'src/libcharon/sa/authenticators')
-rw-r--r-- | src/libcharon/sa/authenticators/authenticator.h | 10 |
1 files changed, 10 insertions, 0 deletions
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, }; /** |