mirror of git://anongit.mindrot.org/openssh.git
- (djm) [key.h] Fix ifdefs for no-ECC OpenSSL
This commit is contained in:
parent
aa6598ebb3
commit
005a64da0f
|
@ -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
4
key.h
|
@ -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 *);
|
||||
|
|
Loading…
Reference in New Issue