search for: cipher_by_nam

Displaying 7 results from an estimated 7 matches for "cipher_by_nam".

Did you mean: cipher_by_name
2001 Jul 27
0
openssh-2.9p2 compilation on LynxOS
...39; ./libssh.a(log.o): In function `do_log': /openssh/openssh-2.9p2/log.c(383): undefined reference to `openlog' /openssh/openssh-2.9p2/log.c(384): undefined reference to `syslog' /openssh/openssh-2.9p2/log.c(385): undefined reference to `closelog' ./libssh.a(cipher.o): In function `cipher_by_name': /openssh/openssh-2.9p2/cipher.c(440): undefined reference to `strcasecmp' ./libssh.a(packet.o): In function `packet_read': /openssh/openssh-2.9p2/packet.c(692): undefined reference to `howmany' /openssh/openssh-2.9p2/packet.c(717): undefined reference to `howmany' ./libssh.a(...
2001 Feb 17
2
Small aix patch to configure.in
The following aix patch to configure.in forces /usr/include to be searched before /usr/local/include on AIX systems only. This allows the normal include rules to untangle <login.h> from "login.h" on AIX when using the AIX cc compiler or gcc. Please see that it gets applied to the current cvs source tree. It fixes the only compile time error the current cvs tree has on aix with
2001 Feb 01
0
warnings on aix325
...function `listen' channels.c: In function `channel_connect_to': channels.c:1642: warning: implicit declaration of function `connect' channels.c: In function `x11_create_display_inet': channels.c:1819: warning: implicit declaration of function `gethostname' cipher.c: In function `cipher_by_name': cipher.c:450: warning: implicit declaration of function `strcasecmp' log.c: In function `log_facility_number': log.c:224: warning: implicit declaration of function `strcasecmp' nchan.c: In function `chan_shutdown_write': nchan.c:464: warning: implicit declaration of function...
2004 Mar 23
2
A question on Compilation errors...
...ference to `strcasecmp' ./libssh.a(log.o): In function `do_log': /openssh-3.8p1/log.c(329): undefined reference to `openlog' /openssh-3.8p1/log.c(330): undefined reference to `syslog' /openssh-3.8p1/log.c(331): undefined reference to `closelog' ./libssh.a(cipher.o): In function `cipher_by_name': /openssh-3.8p1/cipher.c(149): undefined reference to `strcasecmp' ./libssh.a(channels.o): In function `channel_prepare_select': /openssh-3.8p1/channels.c(1668): undefined reference to `howmany' ./libssh.a(packet.o): In function `packet_read_seqnr': /openssh-3.8p1/packet.c(833...
2007 Mar 14
1
sshd gets stuck: select() in packet_read_seqnr waits indefinitely
Dear OpenSSH Portable sshd developers, I'm having a problem where sshd login sessions are occasionally (as often as once a day) getting stuck indefinitely. I enabled debug messages and got a backtrace of a stuck sshd, and I think I've found the bug. I wanted to run it by the list once before filing. sshd version: OpenSSH_4.2p1 FreeBSD-20050903, OpenSSL 0.9.7e-p1 25 Oct 2004
2014 Mar 03
6
[Bug 2207] New: Potential NULL deference, found using coverity
...ranch path:/c/amesh/142/src/crypto/openssh/authfile.c:265: if_end: End of if statement path:/c/amesh/142/src/crypto/openssh/authfile.c:269: cond_false: Condition "ciphername == NULL", taking false branch path:/c/amesh/142/src/crypto/openssh/authfile.c:269: cond_false: Condition "(c = cipher_by_name(ciphername)) == NULL", taking false branch path:/c/amesh/142/src/crypto/openssh/authfile.c:273: if_end: End of if statement path:/c/amesh/142/src/crypto/openssh/authfile.c:274: cond_true: Condition "passphrase == NULL", taking true branch /c/amesh/142/src/crypto/openssh/authfile.c:2...
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
...R_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'; (p = strsep(&cp, CIPHER_SEP))) { c = cipher_by_name(p); +#ifdef OPENSSL_FIPS + if (fips_mode && !(c->fips_allowed)) { + debug("cipher %s disallowed in FIPS mode [%s]", p, names); + xfree(cipher_list); + return 0; + } +#endif if (c...