Subject: Re: bin/35965 (SSHD from 3/8 00:00 UTC source doesn't work under protocol 1)
To: None <jnemeth@NetBSD.org, gnats-admin@netbsd.org,>
From: Matt Fleming <mjf@NetBSD.org>
List: netbsd-bugs
Date: 03/10/2007 17:00:04
The following reply was made to PR bin/35965; it has been noted by GNATS.
From: Matt Fleming <mjf@NetBSD.org>
To: gnats-bugs@NetBSD.org
Cc: jnemeth@NetBSD.org, gnats-admin@netbsd.org,
netbsd-bugs@netbsd.org, jam@pobox.com
Subject: Re: bin/35965 (SSHD from 3/8 00:00 UTC source doesn't work under protocol 1)
Date: Sat, 10 Mar 2007 16:59:59 +0000
On 10 Mar 2007, at 16:50, Christos Zoulas wrote:
> Could that be related to the openssl import?
>
> christos
>
It would appear so.
Comment #4 from http://bugzilla.mindrot.org/show_bug.cgi?id=1291
states that:
Between 0.9.8d and 0.9.8e, EVP_CIPHER_CTX_key_length changed from
#define EVP_CIPHER_CTX_key_length(e) ((e)->key_len)
to
int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx)
{
return ctx->cipher->key_len;
}
--mjf