This patch adds the helper crypto_skcipher_driver_name which returns
the driver name of the alg object for a given tfm.  This is needed by
ecryptfs.

Signed-off-by: Herbert Xu <herb...@gondor.apana.org.au>

diff --git a/include/crypto/skcipher.h b/include/crypto/skcipher.h
index f7a03a1..5bb7056 100644
--- a/include/crypto/skcipher.h
+++ b/include/crypto/skcipher.h
@@ -231,6 +231,12 @@ static inline int crypto_has_skcipher(const char 
*alg_name, u32 type,
                              crypto_skcipher_mask(mask));
 }
 
+static inline const char *crypto_skcipher_driver_name(
+       struct crypto_skcipher *tfm)
+{
+       return crypto_tfm_alg_name(crypto_skcipher_tfm(tfm));
+}
+
 /**
  * crypto_skcipher_ivsize() - obtain IV size
  * @tfm: cipher handle
-- 
Email: Herbert Xu <herb...@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
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

Reply via email to