X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fgcrypt%2Fcipher.c;h=83065317494ef7c3006ca720cd425d7c973d03c0;hb=2c6b2d70e6640f39563ad7bb0aa0ba87f883848c;hp=3eed8e9570d2755ef166d05d48714fd18cc7bfed;hpb=b18d5b572992debb04a7851e43143711319243a0;p=tinc diff --git a/src/gcrypt/cipher.c b/src/gcrypt/cipher.c index 3eed8e95..83065317 100644 --- a/src/gcrypt/cipher.c +++ b/src/gcrypt/cipher.c @@ -261,7 +261,7 @@ bool cipher_decrypt(cipher_t *cipher, const void *indata, size_t inlen, void *ou size_t origlen = inlen - padbyte; - for(int i = inlen - 1; i >= origlen; i--) + for(size_t i = inlen - 1; i >= origlen; i--) if(((uint8_t *)outdata)[i] != padbyte) { logger(DEBUG_ALWAYS, LOG_ERR, "Error while decrypting: invalid padding"); return false;