search for: evplen

Displaying 1 result from an estimated 1 matches for "evplen".

Did you mean: even
2005 Nov 20
0
[PATCH] Solaris 10 and missing OpenSSL functions >128bit
...================== RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/cipher.c,v retrieving revision 1.81 diff -u -p -r1.81 cipher.c --- cipher.c 17 Jul 2005 07:02:10 -0000 1.81 +++ cipher.c 20 Nov 2005 02:22:41 -0000 @@ -334,7 +334,7 @@ cipher_get_keyiv(CipherContext *cc, u_ch if ((u_int)evplen != len) fatal("%s: wrong iv length %d != %d", __func__, evplen, len); -#if OPENSSL_VERSION_NUMBER < 0x00907000L +#ifdef USE_BUILTIN_RIJNDAEL if (c->evptype == evp_rijndael) ssh_rijndael_iv(&cc->evp, 0, iv, len); else @@ -365,7 +365,7 @@ cipher_set_keyiv(...