aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2009-07-08 05:56:28 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2009-07-08 06:58:30 -0400
commit7d6f56400a695af497a8b7c23ea0ff9c3d9d99f4 (patch)
tree53447ff76fda984ca3fb59aca2bd5f3454842b14 /crypto
parentd06854f0243d91badabaab14503f7f3bb770061d (diff)
crypto: shash - Add shash_attr_alg2 helper
This patch adds the helper shash_attr_alg2 which locates a shash algorithm based on the information in the given attribute. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/shash.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/shash.c b/crypto/shash.c
index 97f6c8ba103a..21bcff6be5b0 100644
--- a/crypto/shash.c
+++ b/crypto/shash.c
@@ -518,5 +518,15 @@ int crypto_init_shash_spawn(struct crypto_shash_spawn *spawn,
518} 518}
519EXPORT_SYMBOL_GPL(crypto_init_shash_spawn); 519EXPORT_SYMBOL_GPL(crypto_init_shash_spawn);
520 520
521struct shash_alg *shash_attr_alg(struct rtattr *rta, u32 type, u32 mask)
522{
523 struct crypto_alg *alg;
524
525 alg = crypto_attr_alg2(rta, &crypto_shash_type, type, mask);
526 return IS_ERR(alg) ? ERR_CAST(alg) :
527 container_of(alg, struct shash_alg, base);
528}
529EXPORT_SYMBOL_GPL(shash_attr_alg);
530
521MODULE_LICENSE("GPL"); 531MODULE_LICENSE("GPL");
522MODULE_DESCRIPTION("Synchronous cryptographic hash type"); 532MODULE_DESCRIPTION("Synchronous cryptographic hash type");