search for: evp_acss

Displaying 5 results from an estimated 5 matches for "evp_acss".

2004 Oct 17
0
OpenSSH 3.9.1 fix for IRIX 5.3 cc
...{ "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, evp_aes_128_ctr }, @@ -104,7 +104,7 @@ { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr }, #endif #if defined(EVP_CTRL_SET_ACSS_MODE) - { "acss at openssh.org", SSH_CIPHER_SSH2, 16, 5, EVP_acss }, + { "acss at openssh.org", SSH_CIPHER_SSH2, 16, 5, (const EVP_CIPHER *(*)(void)) EVP_acss }, #endif { NULL, SSH_CIPHER_INVALID, 0, 0, NULL } }; @@ -415,7 +415,7 @@ Cipher *c = cc->cipher; int plen = 0; - if (c->evptype ==...
2011 Sep 07
0
cipher_get_keycontext() and cipher_set_keycontext() copying OpenSSL RC4 cryptographic state
These two functions in cipher.c (I have looked at openssh5.8p1 & openssh5.9p1) copy the internal cryptographic state of an OpenSSL RC4 encryption/decryption context using simple memcpy(). This code also copies the state when evptype is EVP_acss, which I am unfamiliar with. This code appears to works fine when using the builtin crypto of OpenSSL 1.0.0d. However, I have been doing some work to make OpenSSH use alternative crypto engines and it appears to me that this code may not work correctly when using an OpenSSL engine. The cipher_dat...
2005 Nov 20
0
[PATCH] Optionally enable OpenSSL hardware support
...c/security/openssh/cvs/openssh_cvs/openbsd-compat/openssl-compat.h,v retrieving revision 1.2 diff -u -p -r1.2 openssl-compat.h --- openbsd-compat/openssl-compat.h 20 Nov 2005 03:10:00 -0000 1.2 +++ openbsd-compat/openssl-compat.h 20 Nov 2005 03:10:30 -0000 @@ -52,7 +52,7 @@ extern const EVP_CIPHER *evp_acss(void); */ #ifdef SSH_OLD_EVP -# ifndef SSH_DONT_REDEF_EVP +# ifndef SSH_DONT_OVERLOAD_OPENSSL_FUNCS # ifdef EVP_Cipher # undef EVP_Cipher @@ -68,3 +68,8 @@ int ssh_EVP_CipherInit(EVP_CIPHER_CTX *, int ssh_EVP_Cipher(EVP_CIPHER_CTX *, char *, char *, int); int ssh_EVP_CIPHER_CTX_cleanu...
2007 Mar 03
18
[Bug 1291] aes256-ctr, aes192-ctr, arcfour256 broken with OpenSSL 0.9.8e
http://bugzilla.mindrot.org/show_bug.cgi?id=1291 Summary: aes256-ctr, aes192-ctr, arcfour256 broken with OpenSSL 0.9.8e Product: Portable OpenSSH Version: 4.5p1 Platform: All OS/Version: All Status: NEW Severity: minor Priority: P2 Component: sshd AssignedTo: bitbucket at
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
...;, SSH_CIPHER_SSH2, 16, 16, 0, evp_aes_128_ctr, 1 }, + { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, evp_aes_128_ctr, 1 }, + { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, evp_aes_128_ctr, 1 }, #ifdef USE_CIPHER_ACSS - { "acss at openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, EVP_acss }, + { "acss at openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, EVP_acss, 0 }, #endif - { NULL, SSH_CIPHER_INVALID, 0, 0, 0, NULL } + { NULL, SSH_CIPHER_INVALID, 0, 0, 0, NULL, 0 } }; /*--*/ @@ -156,6 +158,13 @@ for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';...