~ubuntu-branches/ubuntu/lucid/openssl/lucid-security

« back to all changes in this revision

Viewing changes to crypto/evp/c_allc.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2008-08-03 19:47:10 UTC
  • mfrom: (1.1.6 upstream) (14 gutsy)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080803194710-dwlvv1y2pyzi3in2
Tags: 0.9.8g-13
Fix a problem with tlsext preventing firefox 3 from connection.
Patch from upstream CVS and part of 0.9.8h.
(Closes: #492758)

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
        EVP_add_cipher_alias(SN_idea_cbc,"idea");
108
108
#endif
109
109
 
 
110
#ifndef OPENSSL_NO_SEED
 
111
        EVP_add_cipher(EVP_seed_ecb());
 
112
        EVP_add_cipher(EVP_seed_cfb());
 
113
        EVP_add_cipher(EVP_seed_ofb());
 
114
        EVP_add_cipher(EVP_seed_cbc());
 
115
        EVP_add_cipher_alias(SN_seed_cbc,"SEED");
 
116
        EVP_add_cipher_alias(SN_seed_cbc,"seed");
 
117
#endif
 
118
 
110
119
#ifndef OPENSSL_NO_RC2
111
120
        EVP_add_cipher(EVP_rc2_ecb());
112
121
        EVP_add_cipher(EVP_rc2_cfb());