patch-cipher_c 643 B

12345678910111213
  1. --- openssh-6.7p1.orig/cipher.c 2014-07-20 18:24:59.000000000 +0200
  2. +++ openssh-6.7p1/cipher.c 2014-10-11 21:51:33.000000000 +0200
  3. @@ -88,8 +88,10 @@ static const struct sshcipher ciphers[]
  4. { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, 0, 0, 1, EVP_des_ede3_cbc },
  5. { "blowfish-cbc",
  6. SSH_CIPHER_SSH2, 8, 16, 0, 0, 0, 1, EVP_bf_cbc },
  7. +#ifndef OPENSSL_NO_CAST
  8. { "cast128-cbc",
  9. SSH_CIPHER_SSH2, 8, 16, 0, 0, 0, 1, EVP_cast5_cbc },
  10. +#endif
  11. { "arcfour", SSH_CIPHER_SSH2, 8, 16, 0, 0, 0, 0, EVP_rc4 },
  12. { "arcfour128", SSH_CIPHER_SSH2, 8, 16, 0, 0, 1536, 0, EVP_rc4 },
  13. { "arcfour256", SSH_CIPHER_SSH2, 8, 32, 0, 0, 1536, 0, EVP_rc4 },