Remove __DECLARE_SEMAPHORE_GENERIC
[linux-2.6/mini2440.git] / include / crypto / hash.h
blobd12498ec8a4edc7deedd36f2d27a189f9cb197a0
1 /*
2 * Hash: Hash algorithms under the crypto API
3 *
4 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
13 #ifndef _CRYPTO_HASH_H
14 #define _CRYPTO_HASH_H
16 #include <linux/crypto.h>
18 struct crypto_ahash {
19 struct crypto_tfm base;
22 static inline struct crypto_ahash *__crypto_ahash_cast(struct crypto_tfm *tfm)
24 return (struct crypto_ahash *)tfm;
27 static inline struct crypto_ahash *crypto_alloc_ahash(const char *alg_name,
28 u32 type, u32 mask)
30 type &= ~CRYPTO_ALG_TYPE_MASK;
31 mask &= ~CRYPTO_ALG_TYPE_MASK;
32 type |= CRYPTO_ALG_TYPE_AHASH;
33 mask |= CRYPTO_ALG_TYPE_AHASH_MASK;
35 return __crypto_ahash_cast(crypto_alloc_base(alg_name, type, mask));
38 static inline struct crypto_tfm *crypto_ahash_tfm(struct crypto_ahash *tfm)
40 return &tfm->base;
43 static inline void crypto_free_ahash(struct crypto_ahash *tfm)
45 crypto_free_tfm(crypto_ahash_tfm(tfm));
48 static inline unsigned int crypto_ahash_alignmask(
49 struct crypto_ahash *tfm)
51 return crypto_tfm_alg_alignmask(crypto_ahash_tfm(tfm));
54 static inline struct ahash_tfm *crypto_ahash_crt(struct crypto_ahash *tfm)
56 return &crypto_ahash_tfm(tfm)->crt_ahash;
59 static inline unsigned int crypto_ahash_digestsize(struct crypto_ahash *tfm)
61 return crypto_ahash_crt(tfm)->digestsize;
64 static inline u32 crypto_ahash_get_flags(struct crypto_ahash *tfm)
66 return crypto_tfm_get_flags(crypto_ahash_tfm(tfm));
69 static inline void crypto_ahash_set_flags(struct crypto_ahash *tfm, u32 flags)
71 crypto_tfm_set_flags(crypto_ahash_tfm(tfm), flags);
74 static inline void crypto_ahash_clear_flags(struct crypto_ahash *tfm, u32 flags)
76 crypto_tfm_clear_flags(crypto_ahash_tfm(tfm), flags);
79 static inline struct crypto_ahash *crypto_ahash_reqtfm(
80 struct ahash_request *req)
82 return __crypto_ahash_cast(req->base.tfm);
85 static inline unsigned int crypto_ahash_reqsize(struct crypto_ahash *tfm)
87 return crypto_ahash_crt(tfm)->reqsize;
90 static inline int crypto_ahash_setkey(struct crypto_ahash *tfm,
91 const u8 *key, unsigned int keylen)
93 struct ahash_tfm *crt = crypto_ahash_crt(tfm);
95 return crt->setkey(tfm, key, keylen);
98 static inline int crypto_ahash_digest(struct ahash_request *req)
100 struct ahash_tfm *crt = crypto_ahash_crt(crypto_ahash_reqtfm(req));
101 return crt->digest(req);
104 static inline void ahash_request_set_tfm(struct ahash_request *req,
105 struct crypto_ahash *tfm)
107 req->base.tfm = crypto_ahash_tfm(tfm);
110 static inline struct ahash_request *ahash_request_alloc(
111 struct crypto_ahash *tfm, gfp_t gfp)
113 struct ahash_request *req;
115 req = kmalloc(sizeof(struct ahash_request) +
116 crypto_ahash_reqsize(tfm), gfp);
118 if (likely(req))
119 ahash_request_set_tfm(req, tfm);
121 return req;
124 static inline void ahash_request_free(struct ahash_request *req)
126 kfree(req);
129 static inline struct ahash_request *ahash_request_cast(
130 struct crypto_async_request *req)
132 return container_of(req, struct ahash_request, base);
135 static inline void ahash_request_set_callback(struct ahash_request *req,
136 u32 flags,
137 crypto_completion_t complete,
138 void *data)
140 req->base.complete = complete;
141 req->base.data = data;
142 req->base.flags = flags;
145 static inline void ahash_request_set_crypt(struct ahash_request *req,
146 struct scatterlist *src, u8 *result,
147 unsigned int nbytes)
149 req->src = src;
150 req->nbytes = nbytes;
151 req->result = result;
154 #endif /* _CRYPTO_HASH_H */