diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-27 20:41:29 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-27 20:41:29 +0200 |
commit | e201f53e933eaa63e62b6f982007ed764361846d (patch) | |
tree | 06dacce5eeea8852bc119970b65c2b26f576a6cd /src/libstrongswan/plugins/openssl | |
parent | 1dbaec2177964bbdc5228f652d0609b2ec2c8d99 (diff) | |
download | strongswan-e201f53e933eaa63e62b6f982007ed764361846d.tar.bz2 strongswan-e201f53e933eaa63e62b6f982007ed764361846d.tar.xz |
build_curve_signature() processes hash not data
Diffstat (limited to 'src/libstrongswan/plugins/openssl')
-rw-r--r-- | src/libstrongswan/plugins/openssl/openssl_ec_private_key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_ec_private_key.c b/src/libstrongswan/plugins/openssl/openssl_ec_private_key.c index 0bfe27fc9..6049f1d06 100644 --- a/src/libstrongswan/plugins/openssl/openssl_ec_private_key.c +++ b/src/libstrongswan/plugins/openssl/openssl_ec_private_key.c @@ -100,7 +100,7 @@ static bool build_curve_signature(private_openssl_ec_private_key_t *this, { return FALSE; } - built = build_signature(this, data, signature); + built = build_signature(this, hash, signature); chunk_free(&hash); return built; } |