- (dtucker) [regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c] ifdef

ECC variable too.
This commit is contained in:
Darren Tucker 2014-06-11 07:38:49 +10:00
parent d7af0cc5bf
commit 15c254a253
2 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,8 @@
curve tests if OpenSSL has them. curve tests if OpenSSL has them.
- (dtucker) [myprosal.h] Don't include curve25519-sha256@libssh.org in - (dtucker) [myprosal.h] Don't include curve25519-sha256@libssh.org in
the proposal if the version of OpenSSL we're using doesn't support ECC. the proposal if the version of OpenSSL we're using doesn't support ECC.
- (dtucker) [regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c] ifdef
ECC variable too.
20140527 20140527
- (djm) [cipher.c] Fix merge botch. - (djm) [cipher.c] Fix merge botch.

View File

@ -29,7 +29,9 @@ attempt_parse_blob(u_char *blob, size_t len)
{ {
struct sshbuf *p1; struct sshbuf *p1;
BIGNUM *bn; BIGNUM *bn;
#ifdef OPENSSL_HAS_NISTP256
EC_KEY *eck; EC_KEY *eck;
#endif
u_char *s; u_char *s;
size_t l; size_t l;
u_int8_t u8; u_int8_t u8;