- (djm) [key.h] Fix ifdefs for no-ECC OpenSSL

This commit is contained in:
Damien Miller 2014-08-21 10:48:41 +10:00
parent aa6598ebb3
commit 005a64da0f
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
20140821
- (djm) [Makefile.in] fix reference to libtest_helper.a in sshkey test too.
- (djm) [key.h] Fix ifdefs for no-ECC OpenSSL
20140820
- (djm) [configure.ac] Check OpenSSL version is supported at configure time;

4
key.h
View File

@ -81,10 +81,10 @@ int key_cert_check_authority(const Key *, int, int, const char *,
const char **);
char *key_alg_list(int, int);
#ifdef WITH_OPENSSL
#if defined(WITH_OPENSSL) && defined(OPENSSL_HAS_ECC)
int key_ec_validate_public(const EC_GROUP *, const EC_POINT *);
int key_ec_validate_private(const EC_KEY *);
#endif /* WITH_OPENSSL */
#endif /* defined(WITH_OPENSSL) && defined(OPENSSL_HAS_ECC) */
Key *key_from_blob(const u_char *, u_int);
int key_to_blob(const Key *, u_char **, u_int *);