blob: fa5c9fb7ce5a957d56169fe68b44788a53934aa1 [file] [log] [blame]
Herbert Xu20036252008-07-07 22:19:53 +08001/*
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>
Herbert Xu18e33e62008-07-10 16:01:22 +080017#include <crypto/hash.h>
Herbert Xu20036252008-07-07 22:19:53 +080018
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
Herbert Xu2e4fddd2009-07-07 15:17:12 +080037struct shash_instance {
38 struct shash_alg alg;
39};
40
Herbert Xu94296992009-07-08 17:21:37 +080041struct crypto_shash_spawn {
42 struct crypto_spawn base;
43};
44
Herbert Xu18e33e62008-07-10 16:01:22 +080045extern const struct crypto_type crypto_ahash_type;
46
Herbert Xu20036252008-07-07 22:19:53 +080047int 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);
Herbert Xu5f7082e2008-08-31 22:21:09 +100050int crypto_hash_walk_first_compat(struct hash_desc *hdesc,
51 struct crypto_hash_walk *walk,
52 struct scatterlist *sg, unsigned int len);
Herbert Xu20036252008-07-07 22:19:53 +080053
Herbert Xu7b5a080b2008-08-31 15:47:27 +100054int crypto_register_shash(struct shash_alg *alg);
55int crypto_unregister_shash(struct shash_alg *alg);
Herbert Xu619a6eb2009-07-08 18:46:23 +080056int shash_register_instance(struct crypto_template *tmpl,
57 struct shash_instance *inst);
Herbert Xu2e4fddd2009-07-07 15:17:12 +080058void shash_free_instance(struct crypto_instance *inst);
59
Herbert Xu94296992009-07-08 17:21:37 +080060int crypto_init_shash_spawn(struct crypto_shash_spawn *spawn,
61 struct shash_alg *alg,
62 struct crypto_instance *inst);
63
Herbert Xu7d6f56402009-07-08 17:56:28 +080064struct shash_alg *shash_attr_alg(struct rtattr *rta, u32 type, u32 mask);
65
Herbert Xu18e33e62008-07-10 16:01:22 +080066static inline void *crypto_ahash_ctx(struct crypto_ahash *tfm)
67{
68 return crypto_tfm_ctx(&tfm->base);
69}
70
71static inline struct ahash_alg *crypto_ahash_alg(
72 struct crypto_ahash *tfm)
73{
74 return &crypto_ahash_tfm(tfm)->__crt_alg->cra_ahash;
75}
76
77static inline int ahash_enqueue_request(struct crypto_queue *queue,
78 struct ahash_request *request)
79{
80 return crypto_enqueue_request(queue, &request->base);
81}
82
83static inline struct ahash_request *ahash_dequeue_request(
84 struct crypto_queue *queue)
85{
86 return ahash_request_cast(crypto_dequeue_request(queue));
87}
88
Herbert Xu18e33e62008-07-10 16:01:22 +080089static inline int ahash_tfm_in_queue(struct crypto_queue *queue,
90 struct crypto_ahash *tfm)
91{
92 return crypto_tfm_in_queue(queue, crypto_ahash_tfm(tfm));
93}
94
Herbert Xu7b5a080b2008-08-31 15:47:27 +100095static inline void *crypto_shash_ctx(struct crypto_shash *tfm)
96{
97 return crypto_tfm_ctx(&tfm->base);
98}
99
Herbert Xu2e4fddd2009-07-07 15:17:12 +0800100static inline struct crypto_instance *shash_crypto_instance(
101 struct shash_instance *inst)
102{
103 return container_of(&inst->alg.base, struct crypto_instance, alg);
104}
105
106static inline struct shash_instance *shash_instance(
107 struct crypto_instance *inst)
108{
109 return container_of(__crypto_shash_alg(&inst->alg),
110 struct shash_instance, alg);
111}
112
113static inline struct shash_instance *shash_alloc_instance(
114 const char *name, struct crypto_alg *alg)
115{
116 return crypto_alloc_instance2(name, alg,
117 sizeof(struct shash_alg) - sizeof(*alg));
118}
119
Herbert Xu94296992009-07-08 17:21:37 +0800120static inline struct crypto_shash *crypto_spawn_shash(
121 struct crypto_shash_spawn *spawn)
122{
123 return crypto_spawn_tfm2(&spawn->base);
124}
125
Herbert Xu20036252008-07-07 22:19:53 +0800126#endif /* _CRYPTO_INTERNAL_HASH_H */
127