Put SK ECDSA bits inside ifdef OPENSSL_HAS_ECC.

Fixes build when linking against OpenSSLs built with no-ec.
This commit is contained in:
Darren Tucker 2019-12-15 18:27:02 +11:00
parent 9244990ecd
commit fff8ff6dd5
1 changed files with 4 additions and 0 deletions

View File

@ -54,6 +54,7 @@ ssh_ecdsa_sk_verify(const struct sshkey *key,
const u_char *data, size_t datalen, u_int compat,
struct sshkey_sig_details **detailsp)
{
#ifdef OPENSSL_HAS_ECC
ECDSA_SIG *sig = NULL;
BIGNUM *sig_r = NULL, *sig_s = NULL;
u_char sig_flags;
@ -200,4 +201,7 @@ ssh_ecdsa_sk_verify(const struct sshkey *key,
BN_clear_free(sig_s);
free(ktype);
return ret;
#else
return SSH_ERR_INTERNAL_ERROR;
#endif
}