Lines Matching defs:tfm
867 struct crypto_aead *tfm;
872 tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
874 tfm = crypto_alloc_aead("ccm(aes)", 0, 0);
875 if (IS_ERR(tfm)) {
878 return PTR_ERR(tfm);
880 server->secmech.ccmaesencrypt = tfm;
886 tfm = crypto_alloc_aead("gcm(aes)", 0, 0);
888 tfm = crypto_alloc_aead("ccm(aes)", 0, 0);
889 if (IS_ERR(tfm)) {
894 return PTR_ERR(tfm);
896 server->secmech.ccmaesdecrypt = tfm;