diff options
author | Tobias Brunner <tobias@strongswan.org> | 2008-06-24 06:57:47 +0000 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2008-06-24 06:57:47 +0000 |
commit | ad4d3f81c17f661ed0d970f4182911d1d181c150 (patch) | |
tree | d1c479cebbc310d6afe53b1f1c5e76b799b4f128 | |
parent | 7c8eff1eaac631880fc42acc31674b096fb906cc (diff) | |
download | strongswan-ad4d3f81c17f661ed0d970f4182911d1d181c150.tar.bz2 strongswan-ad4d3f81c17f661ed0d970f4182911d1d181c150.tar.xz |
changed ipsec.secrets keyword EC to ECDSA
4 files changed, 4 insertions, 4 deletions
diff --git a/src/charon/plugins/stroke/stroke_cred.c b/src/charon/plugins/stroke/stroke_cred.c index 368aea1cc..223500488 100644 --- a/src/charon/plugins/stroke/stroke_cred.c +++ b/src/charon/plugins/stroke/stroke_cred.c @@ -733,7 +733,7 @@ static void load_secrets(private_stroke_cred_t *this) DBG1(DBG_CFG, "line %d: missing token", line_nr); goto error; } - if (match("RSA", &token) || match("EC", &token)) + if (match("RSA", &token) || match("ECDSA", &token)) { char path[PATH_MAX]; chunk_t filename; diff --git a/testing/tests/openssl/ecdsa-certs/hosts/carol/etc/ipsec.secrets b/testing/tests/openssl/ecdsa-certs/hosts/carol/etc/ipsec.secrets index 4bd16abc2..4e53ef91a 100644 --- a/testing/tests/openssl/ecdsa-certs/hosts/carol/etc/ipsec.secrets +++ b/testing/tests/openssl/ecdsa-certs/hosts/carol/etc/ipsec.secrets @@ -1,3 +1,3 @@ # /etc/ipsec.secrets - strongSwan IPsec secrets file -: EC carolKey.pem "nH5ZQEWtku0RJEZ6" +: ECDSA carolKey.pem "nH5ZQEWtku0RJEZ6" diff --git a/testing/tests/openssl/ecdsa-certs/hosts/dave/etc/ipsec.secrets b/testing/tests/openssl/ecdsa-certs/hosts/dave/etc/ipsec.secrets index 2ec2ca314..ebd3a2839 100644 --- a/testing/tests/openssl/ecdsa-certs/hosts/dave/etc/ipsec.secrets +++ b/testing/tests/openssl/ecdsa-certs/hosts/dave/etc/ipsec.secrets @@ -1,3 +1,3 @@ # /etc/ipsec.secrets - strongSwan IPsec secrets file -: EC daveKey.pem +: ECDSA daveKey.pem diff --git a/testing/tests/openssl/ecdsa-certs/hosts/moon/etc/ipsec.secrets b/testing/tests/openssl/ecdsa-certs/hosts/moon/etc/ipsec.secrets index fc4b68c73..1ef3eccb5 100644 --- a/testing/tests/openssl/ecdsa-certs/hosts/moon/etc/ipsec.secrets +++ b/testing/tests/openssl/ecdsa-certs/hosts/moon/etc/ipsec.secrets @@ -1,3 +1,3 @@ # /etc/ipsec.secrets - strongSwan IPsec secrets file -: EC moonKey.pem +: ECDSA moonKey.pem |