crypto: shash - Export async functions
[linux-2.6-block.git] / include / crypto / internal / hash.h
CommitLineData
20036252
HX
1/*
2 * Hash algorithms.
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_INTERNAL_HASH_H
14#define _CRYPTO_INTERNAL_HASH_H
15
16#include <crypto/algapi.h>
18e33e6d 17#include <crypto/hash.h>
20036252
HX
18
19struct ahash_request;
20struct scatterlist;
21
22struct crypto_hash_walk {
23 char *data;
24
25 unsigned int offset;
26 unsigned int alignmask;
27
28 struct page *pg;
29 unsigned int entrylen;
30
31 unsigned int total;
32 struct scatterlist *sg;
33
34 unsigned int flags;
35};
36
2e4fddd8
HX
37struct shash_instance {
38 struct shash_alg alg;
39};
40
94296999
HX
41struct crypto_shash_spawn {
42 struct crypto_spawn base;
43};
44
18e33e6d
HX
45extern const struct crypto_type crypto_ahash_type;
46
20036252
HX
47int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err);
48int crypto_hash_walk_first(struct ahash_request *req,
49 struct crypto_hash_walk *walk);
5f7082ed
HX
50int crypto_hash_walk_first_compat(struct hash_desc *hdesc,
51 struct crypto_hash_walk *walk,
52 struct scatterlist *sg, unsigned int len);
20036252 53
7b5a080b
HX
54int crypto_register_shash(struct shash_alg *alg);
55int crypto_unregister_shash(struct shash_alg *alg);
619a6ebd
HX
56int shash_register_instance(struct crypto_template *tmpl,
57 struct shash_instance *inst);
2e4fddd8
HX
58void shash_free_instance(struct crypto_instance *inst);
59
94296999
HX
60int crypto_init_shash_spawn(struct crypto_shash_spawn *spawn,
61 struct shash_alg *alg,
62 struct crypto_instance *inst);
63
7d6f5640
HX
64struct shash_alg *shash_attr_alg(struct rtattr *rta, u32 type, u32 mask);
65
7eddf95e
HX
66int shash_ahash_update(struct ahash_request *req, struct shash_desc *desc);
67int shash_ahash_digest(struct ahash_request *req, struct shash_desc *desc);
68
18e33e6d
HX
69static inline void *crypto_ahash_ctx(struct crypto_ahash *tfm)
70{
71 return crypto_tfm_ctx(&tfm->base);
72}
73
74static inline struct ahash_alg *crypto_ahash_alg(
75 struct crypto_ahash *tfm)
76{
77 return &crypto_ahash_tfm(tfm)->__crt_alg->cra_ahash;
78}
79
80static inline int ahash_enqueue_request(struct crypto_queue *queue,
81 struct ahash_request *request)
82{
83 return crypto_enqueue_request(queue, &request->base);
84}
85
86static inline struct ahash_request *ahash_dequeue_request(
87 struct crypto_queue *queue)
88{
89 return ahash_request_cast(crypto_dequeue_request(queue));
90}
91
18e33e6d
HX
92static inline int ahash_tfm_in_queue(struct crypto_queue *queue,
93 struct crypto_ahash *tfm)
94{
95 return crypto_tfm_in_queue(queue, crypto_ahash_tfm(tfm));
96}
97
7b5a080b
HX
98static inline void *crypto_shash_ctx(struct crypto_shash *tfm)
99{
100 return crypto_tfm_ctx(&tfm->base);
101}
102
2e4fddd8
HX
103static inline struct crypto_instance *shash_crypto_instance(
104 struct shash_instance *inst)
105{
106 return container_of(&inst->alg.base, struct crypto_instance, alg);
107}
108
109static inline struct shash_instance *shash_instance(
110 struct crypto_instance *inst)
111{
112 return container_of(__crypto_shash_alg(&inst->alg),
113 struct shash_instance, alg);
114}
115
ef5d590c
HX
116static inline void *shash_instance_ctx(struct shash_instance *inst)
117{
118 return crypto_instance_ctx(shash_crypto_instance(inst));
119}
120
2e4fddd8
HX
121static inline struct shash_instance *shash_alloc_instance(
122 const char *name, struct crypto_alg *alg)
123{
124 return crypto_alloc_instance2(name, alg,
125 sizeof(struct shash_alg) - sizeof(*alg));
126}
127
94296999
HX
128static inline struct crypto_shash *crypto_spawn_shash(
129 struct crypto_shash_spawn *spawn)
130{
131 return crypto_spawn_tfm2(&spawn->base);
132}
133
cde6263f
HX
134static inline void *crypto_shash_ctx_aligned(struct crypto_shash *tfm)
135{
136 return crypto_tfm_ctx_aligned(&tfm->base);
137}
138
0390e6ae
HX
139static inline struct crypto_shash *__crypto_shash_cast(struct crypto_tfm *tfm)
140{
113adefc 141 return container_of(tfm, struct crypto_shash, base);
0390e6ae
HX
142}
143
20036252
HX
144#endif /* _CRYPTO_INTERNAL_HASH_H */
145