|
@@ -665,7 +665,7 @@ static int __test_aead(struct crypto_aead *tfm, int enc,
|
|
|
memcpy(key, template[i].key, template[i].klen);
|
|
memcpy(key, template[i].key, template[i].klen);
|
|
|
|
|
|
|
|
ret = crypto_aead_setkey(tfm, key, template[i].klen);
|
|
ret = crypto_aead_setkey(tfm, key, template[i].klen);
|
|
|
- if (!ret == template[i].fail) {
|
|
|
|
|
|
|
+ if (template[i].fail == !ret) {
|
|
|
pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
|
|
pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
|
|
|
d, j, algo, crypto_aead_get_flags(tfm));
|
|
d, j, algo, crypto_aead_get_flags(tfm));
|
|
|
goto out;
|
|
goto out;
|
|
@@ -770,7 +770,7 @@ static int __test_aead(struct crypto_aead *tfm, int enc,
|
|
|
memcpy(key, template[i].key, template[i].klen);
|
|
memcpy(key, template[i].key, template[i].klen);
|
|
|
|
|
|
|
|
ret = crypto_aead_setkey(tfm, key, template[i].klen);
|
|
ret = crypto_aead_setkey(tfm, key, template[i].klen);
|
|
|
- if (!ret == template[i].fail) {
|
|
|
|
|
|
|
+ if (template[i].fail == !ret) {
|
|
|
pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
|
|
pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
|
|
|
d, j, algo, crypto_aead_get_flags(tfm));
|
|
d, j, algo, crypto_aead_get_flags(tfm));
|
|
|
goto out;
|
|
goto out;
|
|
@@ -1023,7 +1023,7 @@ static int test_cipher(struct crypto_cipher *tfm, int enc,
|
|
|
|
|
|
|
|
ret = crypto_cipher_setkey(tfm, template[i].key,
|
|
ret = crypto_cipher_setkey(tfm, template[i].key,
|
|
|
template[i].klen);
|
|
template[i].klen);
|
|
|
- if (!ret == template[i].fail) {
|
|
|
|
|
|
|
+ if (template[i].fail == !ret) {
|
|
|
printk(KERN_ERR "alg: cipher: setkey failed "
|
|
printk(KERN_ERR "alg: cipher: setkey failed "
|
|
|
"on test %d for %s: flags=%x\n", j,
|
|
"on test %d for %s: flags=%x\n", j,
|
|
|
algo, crypto_cipher_get_flags(tfm));
|
|
algo, crypto_cipher_get_flags(tfm));
|
|
@@ -1133,7 +1133,7 @@ static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
|
|
|
|
|
|
|
|
ret = crypto_skcipher_setkey(tfm, template[i].key,
|
|
ret = crypto_skcipher_setkey(tfm, template[i].key,
|
|
|
template[i].klen);
|
|
template[i].klen);
|
|
|
- if (!ret == template[i].fail) {
|
|
|
|
|
|
|
+ if (template[i].fail == !ret) {
|
|
|
pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
|
|
pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
|
|
|
d, j, algo, crypto_skcipher_get_flags(tfm));
|
|
d, j, algo, crypto_skcipher_get_flags(tfm));
|
|
|
goto out;
|
|
goto out;
|
|
@@ -1211,7 +1211,7 @@ static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
|
|
|
|
|
|
|
|
ret = crypto_skcipher_setkey(tfm, template[i].key,
|
|
ret = crypto_skcipher_setkey(tfm, template[i].key,
|
|
|
template[i].klen);
|
|
template[i].klen);
|
|
|
- if (!ret == template[i].fail) {
|
|
|
|
|
|
|
+ if (template[i].fail == !ret) {
|
|
|
pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
|
|
pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
|
|
|
d, j, algo, crypto_skcipher_get_flags(tfm));
|
|
d, j, algo, crypto_skcipher_get_flags(tfm));
|
|
|
goto out;
|
|
goto out;
|