mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c] ifdef
ECC variable too.
This commit is contained in:
parent
d7af0cc5bf
commit
15c254a253
|
@ -4,6 +4,8 @@
|
|||
curve tests if OpenSSL has them.
|
||||
- (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.
|
||||
- (dtucker) [regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c] ifdef
|
||||
ECC variable too.
|
||||
|
||||
20140527
|
||||
- (djm) [cipher.c] Fix merge botch.
|
||||
|
|
|
@ -29,7 +29,9 @@ attempt_parse_blob(u_char *blob, size_t len)
|
|||
{
|
||||
struct sshbuf *p1;
|
||||
BIGNUM *bn;
|
||||
#ifdef OPENSSL_HAS_NISTP256
|
||||
EC_KEY *eck;
|
||||
#endif
|
||||
u_char *s;
|
||||
size_t l;
|
||||
u_int8_t u8;
|
||||
|
|
Loading…
Reference in New Issue