aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto/internal
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2009-07-14 00:28:26 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2009-07-14 03:54:07 -0400
commit88056ec346ccf41f63dbc7080b24b5fd19d1358d (patch)
treeb78a82cbce49183e587ab8a1a5a5922611468361 /include/crypto/internal
parent2ca33da1dea3ba53d1425226a6bac073c5e8568c (diff)
crypto: ahash - Convert to new style algorithms
This patch converts crypto_ahash to the new style. The old ahash algorithm type is retained until the existing ahash implementations are also converted. All ahash users will automatically get the new crypto_ahash type. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/internal')
-rw-r--r--include/crypto/internal/hash.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h
index 5e45818f3351..08bdffafefad 100644
--- a/include/crypto/internal/hash.h
+++ b/include/crypto/internal/hash.h
@@ -51,6 +51,9 @@ int crypto_hash_walk_first_compat(struct hash_desc *hdesc,
51 struct crypto_hash_walk *walk, 51 struct crypto_hash_walk *walk,
52 struct scatterlist *sg, unsigned int len); 52 struct scatterlist *sg, unsigned int len);
53 53
54int crypto_register_ahash(struct ahash_alg *alg);
55int crypto_unregister_ahash(struct ahash_alg *alg);
56
54int crypto_register_shash(struct shash_alg *alg); 57int crypto_register_shash(struct shash_alg *alg);
55int crypto_unregister_shash(struct shash_alg *alg); 58int crypto_unregister_shash(struct shash_alg *alg);
56int shash_register_instance(struct crypto_template *tmpl, 59int shash_register_instance(struct crypto_template *tmpl,
@@ -66,12 +69,14 @@ struct shash_alg *shash_attr_alg(struct rtattr *rta, u32 type, u32 mask);
66int shash_ahash_update(struct ahash_request *req, struct shash_desc *desc); 69int shash_ahash_update(struct ahash_request *req, struct shash_desc *desc);
67int shash_ahash_digest(struct ahash_request *req, struct shash_desc *desc); 70int shash_ahash_digest(struct ahash_request *req, struct shash_desc *desc);
68 71
72int crypto_init_shash_ops_async(struct crypto_tfm *tfm);
73
69static inline void *crypto_ahash_ctx(struct crypto_ahash *tfm) 74static inline void *crypto_ahash_ctx(struct crypto_ahash *tfm)
70{ 75{
71 return crypto_tfm_ctx(&tfm->base); 76 return crypto_tfm_ctx(crypto_ahash_tfm(tfm));
72} 77}
73 78
74static inline struct ahash_alg *crypto_ahash_alg( 79static inline struct old_ahash_alg *crypto_old_ahash_alg(
75 struct crypto_ahash *tfm) 80 struct crypto_ahash *tfm)
76{ 81{
77 return &crypto_ahash_tfm(tfm)->__crt_alg->cra_ahash; 82 return &crypto_ahash_tfm(tfm)->__crt_alg->cra_ahash;
@@ -80,7 +85,7 @@ static inline struct ahash_alg *crypto_ahash_alg(
80static inline void crypto_ahash_set_reqsize(struct crypto_ahash *tfm, 85static inline void crypto_ahash_set_reqsize(struct crypto_ahash *tfm,
81 unsigned int reqsize) 86 unsigned int reqsize)
82{ 87{
83 crypto_ahash_crt(tfm)->reqsize = reqsize; 88 tfm->reqsize = reqsize;
84} 89}
85 90
86static inline int ahash_enqueue_request(struct crypto_queue *queue, 91static inline int ahash_enqueue_request(struct crypto_queue *queue,