aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/rand/drbg_rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/drbg_rand.c b/crypto/rand/drbg_rand.c
index 4ff347c7ea..77d59ec813 100644
--- a/crypto/rand/drbg_rand.c
+++ b/crypto/rand/drbg_rand.c
@@ -77,7 +77,7 @@ static void ctr_XOR(DRBG_CTR_CTX *cctx, const unsigned char *in, size_t inlen)
/* Should never happen */
n = 16;
}
- for (i = 0; i < 16; i++)
+ for (i = 0; i < n; i++)
cctx->V[i] ^= in[i + cctx->keylen];
}