When doing "modeprobe tcrypt mode=10", the following error will show in dmesg.
alg: skcipher: Failed to load transform for ctr(aes): -22 alg: skcipher: Failed to load transform for ctr(aes): -22 tcrypt: one or more tests failed! Because ctr(aes) testing code will allocate ctr(aes) with geniv, but defualt geniv mode may not work with ctr(aes). As that of rfc3686, this is fixed via specifying geniv mode to "seqiv". Signed-off-by: Huang Ying <ying.hu...@intel.com> --- crypto/ctr.c | 2 ++ 1 file changed, 2 insertions(+) --- a/crypto/ctr.c +++ b/crypto/ctr.c @@ -219,6 +219,8 @@ static struct crypto_instance *crypto_ct inst->alg.cra_blkcipher.encrypt = crypto_ctr_crypt; inst->alg.cra_blkcipher.decrypt = crypto_ctr_crypt; + inst->alg.cra_blkcipher.geniv = "seqiv"; + out: crypto_mod_put(alg); return inst; -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html