]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/crypto/hash.h
crypto: crypto4xx - Switch to new style ahash
[mirror_ubuntu-zesty-kernel.git] / include / crypto / hash.h
CommitLineData
18e33e6d
HX
1/*
2 * Hash: Hash algorithms under the crypto API
3 *
4 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
5 *
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.
10 *
11 */
12
13#ifndef _CRYPTO_HASH_H
14#define _CRYPTO_HASH_H
15
16#include <linux/crypto.h>
17
88056ec3
HX
18struct crypto_ahash;
19
20struct hash_alg_common {
21 unsigned int digestsize;
22 unsigned int statesize;
23
24 struct crypto_alg base;
25};
26
27struct ahash_request {
28 struct crypto_async_request base;
29
30 unsigned int nbytes;
31 struct scatterlist *src;
32 u8 *result;
33
34 void *__ctx[] CRYPTO_MINALIGN_ATTR;
35};
36
37struct ahash_alg {
38 int (*init)(struct ahash_request *req);
39 int (*update)(struct ahash_request *req);
40 int (*final)(struct ahash_request *req);
41 int (*finup)(struct ahash_request *req);
42 int (*digest)(struct ahash_request *req);
43 int (*export)(struct ahash_request *req, void *out);
44 int (*import)(struct ahash_request *req, const void *in);
45 int (*setkey)(struct crypto_ahash *tfm, const u8 *key,
46 unsigned int keylen);
47
48 struct hash_alg_common halg;
49};
50
7b5a080b
HX
51struct shash_desc {
52 struct crypto_shash *tfm;
53 u32 flags;
54
55 void *__ctx[] CRYPTO_MINALIGN_ATTR;
56};
57
58struct shash_alg {
59 int (*init)(struct shash_desc *desc);
60 int (*update)(struct shash_desc *desc, const u8 *data,
61 unsigned int len);
62 int (*final)(struct shash_desc *desc, u8 *out);
63 int (*finup)(struct shash_desc *desc, const u8 *data,
64 unsigned int len, u8 *out);
65 int (*digest)(struct shash_desc *desc, const u8 *data,
66 unsigned int len, u8 *out);
99d27e1c
HX
67 int (*export)(struct shash_desc *desc, void *out);
68 int (*import)(struct shash_desc *desc, const void *in);
7b5a080b
HX
69 int (*setkey)(struct crypto_shash *tfm, const u8 *key,
70 unsigned int keylen);
71
72 unsigned int descsize;
88056ec3
HX
73
74 /* These fields must match hash_alg_common. */
7b5a080b 75 unsigned int digestsize;
99d27e1c 76 unsigned int statesize;
7b5a080b
HX
77
78 struct crypto_alg base;
79};
80
18e33e6d 81struct crypto_ahash {
88056ec3
HX
82 int (*init)(struct ahash_request *req);
83 int (*update)(struct ahash_request *req);
84 int (*final)(struct ahash_request *req);
85 int (*finup)(struct ahash_request *req);
86 int (*digest)(struct ahash_request *req);
87 int (*export)(struct ahash_request *req, void *out);
88 int (*import)(struct ahash_request *req, const void *in);
89 int (*setkey)(struct crypto_ahash *tfm, const u8 *key,
90 unsigned int keylen);
91
92 unsigned int digestsize;
93 unsigned int reqsize;
18e33e6d
HX
94 struct crypto_tfm base;
95};
96
7b5a080b 97struct crypto_shash {
113adefc 98 unsigned int descsize;
7b5a080b
HX
99 struct crypto_tfm base;
100};
101
18e33e6d
HX
102static inline struct crypto_ahash *__crypto_ahash_cast(struct crypto_tfm *tfm)
103{
88056ec3 104 return container_of(tfm, struct crypto_ahash, base);
18e33e6d
HX
105}
106
88056ec3
HX
107struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type,
108 u32 mask);
18e33e6d
HX
109
110static inline struct crypto_tfm *crypto_ahash_tfm(struct crypto_ahash *tfm)
111{
112 return &tfm->base;
113}
114
115static inline void crypto_free_ahash(struct crypto_ahash *tfm)
116{
88056ec3 117 crypto_destroy_tfm(tfm, crypto_ahash_tfm(tfm));
18e33e6d
HX
118}
119
120static inline unsigned int crypto_ahash_alignmask(
121 struct crypto_ahash *tfm)
122{
123 return crypto_tfm_alg_alignmask(crypto_ahash_tfm(tfm));
124}
125
88056ec3
HX
126static inline struct hash_alg_common *__crypto_hash_alg_common(
127 struct crypto_alg *alg)
128{
129 return container_of(alg, struct hash_alg_common, base);
130}
131
132static inline struct hash_alg_common *crypto_hash_alg_common(
133 struct crypto_ahash *tfm)
18e33e6d 134{
88056ec3 135 return __crypto_hash_alg_common(crypto_ahash_tfm(tfm)->__crt_alg);
18e33e6d
HX
136}
137
138static inline unsigned int crypto_ahash_digestsize(struct crypto_ahash *tfm)
139{
88056ec3
HX
140 return tfm->digestsize;
141}
142
143static inline unsigned int crypto_ahash_statesize(struct crypto_ahash *tfm)
144{
145 return crypto_hash_alg_common(tfm)->statesize;
18e33e6d
HX
146}
147
148static inline u32 crypto_ahash_get_flags(struct crypto_ahash *tfm)
149{
150 return crypto_tfm_get_flags(crypto_ahash_tfm(tfm));
151}
152
153static inline void crypto_ahash_set_flags(struct crypto_ahash *tfm, u32 flags)
154{
155 crypto_tfm_set_flags(crypto_ahash_tfm(tfm), flags);
156}
157
158static inline void crypto_ahash_clear_flags(struct crypto_ahash *tfm, u32 flags)
159{
160 crypto_tfm_clear_flags(crypto_ahash_tfm(tfm), flags);
161}
162
163static inline struct crypto_ahash *crypto_ahash_reqtfm(
164 struct ahash_request *req)
165{
166 return __crypto_ahash_cast(req->base.tfm);
167}
168
169static inline unsigned int crypto_ahash_reqsize(struct crypto_ahash *tfm)
170{
88056ec3 171 return tfm->reqsize;
18e33e6d
HX
172}
173
dec8b786
HX
174static inline void *ahash_request_ctx(struct ahash_request *req)
175{
176 return req->__ctx;
177}
178
18e33e6d
HX
179static inline int crypto_ahash_setkey(struct crypto_ahash *tfm,
180 const u8 *key, unsigned int keylen)
181{
88056ec3 182 return tfm->setkey(tfm, key, keylen);
18e33e6d
HX
183}
184
185static inline int crypto_ahash_digest(struct ahash_request *req)
186{
88056ec3 187 return crypto_ahash_reqtfm(req)->digest(req);
18e33e6d
HX
188}
189
88056ec3 190static inline int crypto_ahash_export(struct ahash_request *req, void *out)
dec8b786 191{
88056ec3 192 return crypto_ahash_reqtfm(req)->export(req, out);
dec8b786
HX
193}
194
88056ec3
HX
195static inline int crypto_ahash_import(struct ahash_request *req, const void *in)
196{
197 return crypto_ahash_reqtfm(req)->import(req, in);
198}
dec8b786 199
318e5313
HX
200static inline int crypto_ahash_init(struct ahash_request *req)
201{
88056ec3 202 return crypto_ahash_reqtfm(req)->init(req);
318e5313
HX
203}
204
205static inline int crypto_ahash_update(struct ahash_request *req)
206{
88056ec3 207 return crypto_ahash_reqtfm(req)->update(req);
318e5313
HX
208}
209
210static inline int crypto_ahash_final(struct ahash_request *req)
211{
88056ec3 212 return crypto_ahash_reqtfm(req)->final(req);
318e5313
HX
213}
214
18e33e6d
HX
215static inline void ahash_request_set_tfm(struct ahash_request *req,
216 struct crypto_ahash *tfm)
217{
218 req->base.tfm = crypto_ahash_tfm(tfm);
219}
220
221static inline struct ahash_request *ahash_request_alloc(
222 struct crypto_ahash *tfm, gfp_t gfp)
223{
224 struct ahash_request *req;
225
226 req = kmalloc(sizeof(struct ahash_request) +
227 crypto_ahash_reqsize(tfm), gfp);
228
229 if (likely(req))
230 ahash_request_set_tfm(req, tfm);
231
232 return req;
233}
234
235static inline void ahash_request_free(struct ahash_request *req)
236{
aef73cfc 237 kzfree(req);
18e33e6d
HX
238}
239
240static inline struct ahash_request *ahash_request_cast(
241 struct crypto_async_request *req)
242{
243 return container_of(req, struct ahash_request, base);
244}
245
246static inline void ahash_request_set_callback(struct ahash_request *req,
247 u32 flags,
248 crypto_completion_t complete,
249 void *data)
250{
251 req->base.complete = complete;
252 req->base.data = data;
253 req->base.flags = flags;
254}
255
256static inline void ahash_request_set_crypt(struct ahash_request *req,
257 struct scatterlist *src, u8 *result,
258 unsigned int nbytes)
259{
260 req->src = src;
261 req->nbytes = nbytes;
262 req->result = result;
263}
264
7b5a080b
HX
265struct crypto_shash *crypto_alloc_shash(const char *alg_name, u32 type,
266 u32 mask);
267
268static inline struct crypto_tfm *crypto_shash_tfm(struct crypto_shash *tfm)
269{
270 return &tfm->base;
271}
272
273static inline void crypto_free_shash(struct crypto_shash *tfm)
274{
412e87ae 275 crypto_destroy_tfm(tfm, crypto_shash_tfm(tfm));
7b5a080b
HX
276}
277
278static inline unsigned int crypto_shash_alignmask(
279 struct crypto_shash *tfm)
280{
281 return crypto_tfm_alg_alignmask(crypto_shash_tfm(tfm));
282}
283
97495986
HX
284static inline unsigned int crypto_shash_blocksize(struct crypto_shash *tfm)
285{
286 return crypto_tfm_alg_blocksize(crypto_shash_tfm(tfm));
287}
288
7b5a080b
HX
289static inline struct shash_alg *__crypto_shash_alg(struct crypto_alg *alg)
290{
291 return container_of(alg, struct shash_alg, base);
292}
293
294static inline struct shash_alg *crypto_shash_alg(struct crypto_shash *tfm)
295{
296 return __crypto_shash_alg(crypto_shash_tfm(tfm)->__crt_alg);
297}
298
299static inline unsigned int crypto_shash_digestsize(struct crypto_shash *tfm)
300{
301 return crypto_shash_alg(tfm)->digestsize;
302}
303
99d27e1c
HX
304static inline unsigned int crypto_shash_statesize(struct crypto_shash *tfm)
305{
306 return crypto_shash_alg(tfm)->statesize;
307}
308
7b5a080b
HX
309static inline u32 crypto_shash_get_flags(struct crypto_shash *tfm)
310{
311 return crypto_tfm_get_flags(crypto_shash_tfm(tfm));
312}
313
314static inline void crypto_shash_set_flags(struct crypto_shash *tfm, u32 flags)
315{
316 crypto_tfm_set_flags(crypto_shash_tfm(tfm), flags);
317}
318
319static inline void crypto_shash_clear_flags(struct crypto_shash *tfm, u32 flags)
320{
321 crypto_tfm_clear_flags(crypto_shash_tfm(tfm), flags);
322}
323
324static inline unsigned int crypto_shash_descsize(struct crypto_shash *tfm)
325{
113adefc 326 return tfm->descsize;
7b5a080b
HX
327}
328
329static inline void *shash_desc_ctx(struct shash_desc *desc)
330{
331 return desc->__ctx;
332}
333
334int crypto_shash_setkey(struct crypto_shash *tfm, const u8 *key,
335 unsigned int keylen);
336int crypto_shash_digest(struct shash_desc *desc, const u8 *data,
337 unsigned int len, u8 *out);
338
99d27e1c 339static inline int crypto_shash_export(struct shash_desc *desc, void *out)
dec8b786 340{
99d27e1c 341 return crypto_shash_alg(desc->tfm)->export(desc, out);
dec8b786
HX
342}
343
99d27e1c
HX
344static inline int crypto_shash_import(struct shash_desc *desc, const void *in)
345{
346 return crypto_shash_alg(desc->tfm)->import(desc, in);
347}
dec8b786 348
7b5a080b
HX
349static inline int crypto_shash_init(struct shash_desc *desc)
350{
351 return crypto_shash_alg(desc->tfm)->init(desc);
352}
353
354int crypto_shash_update(struct shash_desc *desc, const u8 *data,
355 unsigned int len);
356int crypto_shash_final(struct shash_desc *desc, u8 *out);
357int crypto_shash_finup(struct shash_desc *desc, const u8 *data,
358 unsigned int len, u8 *out);
359
18e33e6d 360#endif /* _CRYPTO_HASH_H */