X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=algos%2Ftea.c;h=a9a3a6f579bc3711530ae3e4abf1606f0d961382;hb=36153df3b7f47e9f04c93b22017437700f184e8c;hp=b355c1168d2b487815cab84ab41fcff66ab96dc2;hpb=6a563a4c21419a505cefe4cb07de3fbf66d2c775;p=bertos.git diff --git a/algos/tea.c b/algos/tea.c index b355c116..a9a3a6f5 100755 --- a/algos/tea.c +++ b/algos/tea.c @@ -41,6 +41,9 @@ /*#* *#* $Log$ + *#* Revision 1.2 2007/09/19 16:23:27 batt + *#* Fix doxygen warnings. + *#* *#* Revision 1.1 2007/06/07 09:13:40 batt *#* Add TEA enc/decryption algorithm. *#* @@ -61,8 +64,8 @@ static uint32_t tea_func(uint32_t *in, uint32_t *sum, uint32_t *k) * \brief TEA encryption function. * This function encrypts v with k and returns the * encrypted data in v. - * \param v Array of two long values containing the data block. - * \param k Array of four long values containing the key. + * \param _v Array of two long values containing the data block. + * \param _k Array of four long values containing the key. */ void tea_enc(void *_v, void *_k) { @@ -90,8 +93,8 @@ void tea_enc(void *_v, void *_k) * \brief TEA decryption function. * This function decrypts v with k and returns the * decrypted data in v. - * \param v Array of two long values containing the data block. - *\param k Array of four long values containing the key. + * \param _v Array of two long values containing the data block. + * \param _k Array of four long values containing the key. */ void tea_dec(void *_v, void *_k) {