comparison src/cipher.c @ 11143:5c56223fa24f

[gaim-migrate @ 13207] I think this gets rid of the last of the gcc4 -Wall warnings in the core committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 22 Jul 2005 02:06:15 +0000
parents b256ce6b85b8
children 8dca96cbcd64
comparison
equal deleted inserted replaced
11142:ee059fe9b362 11143:5c56223fa24f
648 } 648 }
649 649
650 context = gaim_cipher_context_new(cipher, NULL); 650 context = gaim_cipher_context_new(cipher, NULL);
651 gaim_cipher_context_append(context, data, data_len); 651 gaim_cipher_context_append(context, data, data_len);
652 ret = gaim_cipher_context_digest(context, in_len, digest, out_len); 652 ret = gaim_cipher_context_digest(context, in_len, digest, out_len);
653 gaim_cipher_context_destroy(context); 653 gaim_cipher_context_destroy(context);
654 654
655 return ret; 655 return ret;
656 } 656 }
657 657
658 /****************************************************************************** 658 /******************************************************************************