search for: ssh_cipher_blowfish

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

2004 Oct 17
0
OpenSSH 3.9.1 fix for IRIX 5.3 cc
..._NONE, 8, 0, (const EVP_CIPHER *(*)(void)) EVP_enc_null }, + { "des", SSH_CIPHER_DES, 8, 8, (const EVP_CIPHER *(*)(void)) EVP_des_cbc }, { "3des", SSH_CIPHER_3DES, 8, 16, evp_ssh1_3des }, { "blowfish", SSH_CIPHER_BLOWFISH, 8, 32, evp_ssh1_bf }, - { "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 }, - { "arcfour&q...
2004 Nov 11
2
patch adding none cipher/mac for ssh v2
...rieving revision 1.71 diff -c -r1.71 cipher.c *** cipher.c 2004/07/28 09:40:29 1.71 --- cipher.c 2004/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-c...
2000 Jan 14
2
The cipher 'none' in OpenSSH
...penssh-1.2.1pre25.orig/cipher.c openssh-1.2.1pre25/cipher.c --- openssh-1.2.1pre25.orig/cipher.c Tue Dec 14 23:34:31 1999 +++ openssh-1.2.1pre25/cipher.c Fri Jan 14 14:37:16 2000 @@ -148,6 +148,7 @@ unsigned int mask = 0; mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */ mask |= 1 << SSH_CIPHER_BLOWFISH; + mask |= 1 << SSH_CIPHER_NONE; return mask; } diff -ur openssh-1.2.1pre25.orig/ssh.c openssh-1.2.1pre25/ssh.c --- openssh-1.2.1pre25.orig/ssh.c Wed Dec 29 00:17:09 1999 +++ openssh-1.2.1pre25/ssh.c Fri Jan 14 14:40:50 2000 @@ -106,7 +106,8 @@ fprintf(stderr, " -c cipher Sel...
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
...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-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_bf_cbc }, - { "cast128-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_cast5_cbc }, - { "arcfour", SSH_CIPHER_SSH2, 8, 16, 0,...
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: