Subject: Re: bin/35965 (SSHD from 3/8 00:00 UTC source doesn't work under protocol 1)
To: None <gnats-bugs@NetBSD.org>
From: Matt Fleming <mjf@NetBSD.org>
List: netbsd-bugs
Date: 03/10/2007 16:59:59
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