search for: evp_enc_null

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

2002 Jul 25
1
[Bug 371] New: OpenSSH fails to build on Alpha True64 in cipher.c
...IR=\"/var/run\" -D_PATH_PRIVSEP_CHROOT_DIR=\"/var/empty\" -DSSH_RAND_HELPER=\"/usr/local/libexec/ssh-rand-helper\" -DHAVE_CONFIG_H -c cipher.c cc: Warning: cipher.c, line 65: In the initializer for ciphers[0].evptype, the referenced type of the pointer value "EVP_enc_null" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) { "none", SSH_CIPHER_NONE, 8, 0, EVP_enc_null }, ------------------------...
2004 Oct 17
0
OpenSSH 3.9.1 fix for IRIX 5.3 cc
...IDO cc: --- cipher.c.orig 2004-10-17 12:04:10.000000000 +0200 +++ cipher.c 2004-10-17 13:43:22.000000000 +0200 @@ -76,15 +76,15 @@ u_int key_len; const EVP_CIPHER *(*evptype)(void); } ciphers[] = { - { "none", SSH_CIPHER_NONE, 8, 0, EVP_enc_null }, - { "des", SSH_CIPHER_DES, 8, 8, EVP_des_cbc }, + { "none", SSH_CIPHER_NONE, 8, 0, (const EVP_CIPHER *(*)(void)) EVP_enc_null }, + { "des", SSH_CIPHER_DES, 8, 8, (const EVP_CIPHER *(*)(void)) EVP_d...
2002 Sep 12
0
Problems compiling openssh 3.4p1 on IRIX 6.2
...-D_PATH_PRIVSEP_CHRO OT_DIR=\"/var/empty\" -DSSH_RAND_HELPER=\"/usr/local/libexec/ssh-rand-helper\" -DHAVE_CONFI G_H -c cipher.c cfe: Warning 709: cipher.c, line 65: Incompatible pointer type assignment { "none", 0 , 8, 0, EVP_enc_null }, ---------- ----------^ cfe: Warning 709: cipher.c, line 66: Incompatible pointer type assignment { "des", 2 , 8, 8, EVP_des_cbc }, --------- ----------^ cfe: Warning 709: cipher.c, line 70: Incompatible point...
2004 Nov 11
2
patch adding none cipher/mac for ssh v2
...04/11/11 01:07:02 *************** *** 65,70 **** --- 65,71 ---- { "3des", SSH_CIPHER_3DES, 8, 16, evp_ssh1_3des }, { "blowfish", SSH_CIPHER_BLOWFISH, 8, 32, evp_ssh1_bf }, + { "none2", SSH_CIPHER_SSH2, 8, 0, EVP_enc_null }, { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, EVP_des_ede3_cbc }, { "blowfish-cbc", SSH_CIPHER_SSH2, 8, 16, EVP_bf_cbc }, { "cast128-cbc", SSH_CIPHER_SSH2, 8, 16, EVP_cast5_cbc }, Index: mac.c ===============================...
2004 Jun 05
50
[Bug 877] ssh 3.8.1p1 client cannot disable encryption with "-c none"
http://bugzilla.mindrot.org/show_bug.cgi?id=877 Summary: ssh 3.8.1p1 client cannot disable encryption with "-c none" Product: Portable OpenSSH Version: 3.8.1p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo:
2005 Aug 09
2
error compiling asterisk on solaris
...isk/utils.c:623: undefined reference to `va_copy ' /usr/local/ssl/lib/libssl.so: undefined reference to `EVP_DigestInit' /usr/local/ssl/lib/libssl.so: undefined reference to `BIO_find_type' /usr/local/ssl/lib/libssl.so: undefined reference to `EVP_enc_null' /usr/local/ssl/lib/libssl.so: undefined reference to `EVP_CIPHER_CTX_init' /usr/local/ssl/lib/libssl.so: undefined reference to `X509_NAME_dup' /usr/local/ssl/lib/libssl.so: undefined reference to `COMP_compress_block' /usr/local/ssl/lib/libssl.so: undefined reference to `EVP_rc2_c...
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
.../* compatibility with old or broken OpenSSL versions */ #include "openbsd-compat/openssl-compat.h" @@ -64,30 +65,31 @@ u_int key_len; u_int discard_len; const EVP_CIPHER *(*evptype)(void); + u_int fips_allowed; } ciphers[] = { - { "none", SSH_CIPHER_NONE, 8, 0, 0, EVP_enc_null }, - { "des", SSH_CIPHER_DES, 8, 8, 0, EVP_des_cbc }, - { "3des", SSH_CIPHER_3DES, 8, 16, 0, evp_ssh1_3des }, - { "blowfish", SSH_CIPHER_BLOWFISH, 8, 32, 0, evp_ssh1_bf }, - - { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, EVP_des_ede3_cbc }, - { "blowfish...