]> git.sesse.net Git - ffmpeg/commitdiff
xtea: Make the count parameter match the documentation
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Thu, 5 Jul 2012 09:19:13 +0000 (11:19 +0200)
committerMartin Storsjö <martin@martin.st>
Thu, 5 Jul 2012 09:45:18 +0000 (12:45 +0300)
Previously it was interpreted as number of bytes, while the
documentation stated that it was the number of 8 byte blocks.
This makes it behave similarly to the existing AES code.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavutil/xtea.c

index 07a66e56666a5d3a2882c06ee4eab69eac482b45..7c3a14c2bed6b179ccc7990a95bb5eb77a891c8f 100644 (file)
@@ -72,7 +72,7 @@ void av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
     int i;
 
     if (decrypt) {
-        while (count > 0) {
+        while (count--) {
             xtea_crypt_ecb(ctx, dst, src, decrypt);
 
             if (iv) {
@@ -83,10 +83,9 @@ void av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
 
             src   += 8;
             dst   += 8;
-            count -= 8;
         }
     } else {
-        while (count > 0) {
+        while (count--) {
             if (iv) {
                 for (i = 0; i < 8; i++)
                     dst[i] = src[i] ^ iv[i];
@@ -97,7 +96,6 @@ void av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
             }
             src   += 8;
             dst   += 8;
-            count -= 8;
         }
     }
 }