aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/sa/authenticators/authenticator.c
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2011-12-07 14:09:34 +0000
committerMartin Willi <martin@revosec.ch>2012-03-20 17:31:14 +0100
commit76fe7de3fd0b39e7161f6081920d1e2d5edb9317 (patch)
tree1364f384123a7fdffaaa4373239cae13cf7f9f27 /src/libcharon/sa/authenticators/authenticator.c
parent7c27c914d4365e85830b8690fdfa912b848a9588 (diff)
downloadstrongswan-76fe7de3fd0b39e7161f6081920d1e2d5edb9317.tar.bz2
strongswan-76fe7de3fd0b39e7161f6081920d1e2d5edb9317.tar.xz
Added a factory function for IKEv1 authenticators
Diffstat (limited to 'src/libcharon/sa/authenticators/authenticator.c')
-rw-r--r--src/libcharon/sa/authenticators/authenticator.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libcharon/sa/authenticators/authenticator.c b/src/libcharon/sa/authenticators/authenticator.c
index 83f5fbaad..c69a5d92a 100644
--- a/src/libcharon/sa/authenticators/authenticator.c
+++ b/src/libcharon/sa/authenticators/authenticator.c
@@ -21,6 +21,8 @@
#include <sa/authenticators/pubkey_authenticator.h>
#include <sa/authenticators/psk_authenticator.h>
#include <sa/authenticators/eap_authenticator.h>
+#include <sa/authenticators/psk_v1_authenticator.h>
+#include <sa/authenticators/pubkey_v1_authenticator.h>
#include <encoding/payloads/auth_payload.h>
@@ -95,3 +97,26 @@ authenticator_t *authenticator_create_verifier(
}
}
+/**
+ * Described in header.
+ */
+authenticator_t *authenticator_create_v1(ike_sa_t *ike_sa, bool initiator,
+ auth_method_t auth_method, diffie_hellman_t *dh,
+ chunk_t dh_value, chunk_t sa_payload)
+{
+ switch (auth_method)
+ {
+ case AUTH_PSK:
+ case AUTH_XAUTH_INIT_PSK:
+ case AUTH_XAUTH_RESP_PSK:
+ return (authenticator_t*)psk_v1_authenticator_create(ike_sa,
+ initiator, dh, dh_value, sa_payload);
+ case AUTH_RSA:
+ case AUTH_XAUTH_INIT_RSA:
+ case AUTH_XAUTH_RESP_RSA:
+ return (authenticator_t*)pubkey_v1_authenticator_create(ike_sa,
+ initiator, dh, dh_value, sa_payload);
+ default:
+ return NULL;
+ }
+}