~ubuntu-branches/ubuntu/quantal/pidgin/quantal

« back to all changes in this revision

Viewing changes to libpurple/ciphers/rc4.c

  • Committer: Bazaar Package Importer
  • Author(s): Ari Pollak
  • Date: 2011-06-13 21:17:20 UTC
  • mfrom: (1.3.19 upstream)
  • mto: This revision was merged to the branch mainline in revision 73.
  • Revision ID: james.westby@ubuntu.com-20110613211720-ke87vzmdcuaxams7
Tags: 2.8.0-1
* Imported Upstream version 2.8.0 (Closes: #630124)
* Remove SILC support since the library will be orphaned (Closes: #629222)
* Fix typo in libpurple-bin description (Closes: #625462)

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
}
166
166
 
167
167
static PurpleCipherOps RC4Ops = {
168
 
        .set_option = rc4_set_opt,
169
 
        .get_option = rc4_get_opt,
170
 
        .init = rc4_init,
171
 
        .reset = rc4_reset,
172
 
        .uninit = rc4_uninit,
173
 
        .encrypt = rc4_encrypt,
174
 
        .set_key = rc4_set_key,
175
 
        .get_key_size = rc4_get_key_size,
 
168
        rc4_set_opt,   /* Set Option    */
 
169
        rc4_get_opt,   /* Get Option    */
 
170
        rc4_init,      /* init          */
 
171
        rc4_reset,     /* reset         */
 
172
        rc4_uninit,    /* uninit        */
 
173
        NULL,          /* set iv        */
 
174
        NULL,          /* append        */
 
175
        NULL,          /* digest        */
 
176
        rc4_encrypt,   /* encrypt       */
 
177
        NULL,          /* decrypt       */
 
178
        NULL,          /* set salt      */
 
179
        NULL,          /* get salt size */
 
180
        rc4_set_key,   /* set key       */
 
181
        rc4_get_key_size, /* get key size  */
 
182
        NULL,          /* set batch mode */
 
183
        NULL,          /* get batch mode */
 
184
        NULL,          /* get block size */
 
185
        NULL           /* set key with len */
176
186
};
177
187
 
178
188
PurpleCipherOps *