|
@@ -940,6 +940,7 @@ static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
|
|
|
char *xbuf[XBUFSIZE];
|
|
|
char *xoutbuf[XBUFSIZE];
|
|
|
int ret = -ENOMEM;
|
|
|
+ unsigned int ivsize = crypto_skcipher_ivsize(tfm);
|
|
|
|
|
|
if (testmgr_alloc_buf(xbuf))
|
|
|
goto out_nobuf;
|
|
@@ -975,7 +976,7 @@ static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
|
|
|
continue;
|
|
|
|
|
|
if (template[i].iv)
|
|
|
- memcpy(iv, template[i].iv, MAX_IVLEN);
|
|
|
+ memcpy(iv, template[i].iv, ivsize);
|
|
|
else
|
|
|
memset(iv, 0, MAX_IVLEN);
|
|
|
|
|
@@ -1051,7 +1052,7 @@ static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
|
|
|
continue;
|
|
|
|
|
|
if (template[i].iv)
|
|
|
- memcpy(iv, template[i].iv, MAX_IVLEN);
|
|
|
+ memcpy(iv, template[i].iv, ivsize);
|
|
|
else
|
|
|
memset(iv, 0, MAX_IVLEN);
|
|
|
|