diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-27 20:11:49 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-27 20:11:49 +0200 |
commit | c81280248219e3c9aa27db9b05ceba8b8bcedc46 (patch) | |
tree | b1a445d441a0f87934b768342197daced7fb6c8d /src/libstrongswan/plugins/openssl/openssl_ec_public_key.c | |
parent | 10b2898d3cf0f79397d022a8fefab4554bac7354 (diff) | |
download | strongswan-c81280248219e3c9aa27db9b05ceba8b8bcedc46.tar.bz2 strongswan-c81280248219e3c9aa27db9b05ceba8b8bcedc46.tar.xz |
NID_hash and NID_ec_curver were interchanged
Diffstat (limited to 'src/libstrongswan/plugins/openssl/openssl_ec_public_key.c')
-rw-r--r-- | src/libstrongswan/plugins/openssl/openssl_ec_public_key.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c b/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c index f4ad4e708..f5631b3b8 100644 --- a/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c +++ b/src/libstrongswan/plugins/openssl/openssl_ec_public_key.c @@ -153,14 +153,14 @@ static bool verify(private_openssl_ec_public_key_t *this, case SIGN_ECDSA_WITH_NULL: return verify_signature(this, data, signature); case SIGN_ECDSA_256: - return verify_curve_signature(this, scheme, NID_X9_62_prime256v1, - NID_sha256, data, signature); + return verify_curve_signature(this, scheme, NID_sha256, + NID_X9_62_prime256v1, data, signature); case SIGN_ECDSA_384: - return verify_curve_signature(this, scheme, NID_secp384r1, - NID_sha384, data, signature); + return verify_curve_signature(this, scheme, NID_sha384, + NID_secp384r1, data, signature); case SIGN_ECDSA_521: - return verify_curve_signature(this, scheme, NID_secp521r1, - NID_sha512, data, signature); + return verify_curve_signature(this, scheme, NID_sha512, + NID_secp521r1, data, signature); default: DBG1("signature scheme %N not supported in EC", signature_scheme_names, scheme); |