~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/rc2/rc2_skey.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        0xfe,0x7f,0xc1,0xad,
85
85
        };
86
86
 
 
87
#if defined(_MSC_VER) && defined(_ARM_)
 
88
#pragma optimize("g",off)
 
89
#endif
 
90
 
87
91
/* It has come to my attention that there are 2 versions of the RC2
88
92
 * key schedule.  One which is normal, and anther which has a hook to
89
93
 * use a reduced key length.
136
140
                *(ki--)=((k[i]<<8)|k[i-1])&0xffff;
137
141
        }
138
142
 
 
143
#if defined(_MSC_VER)
 
144
#pragma optimize("",on)
 
145
#endif