diff options
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/hash.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/include/crypto/hash.h b/include/crypto/hash.h index d56bb71617c3..3c4cce6a425c 100644 --- a/include/crypto/hash.h +++ b/include/crypto/hash.h | |||
@@ -24,7 +24,6 @@ struct shash_desc { | |||
24 | 24 | ||
25 | struct shash_alg { | 25 | struct shash_alg { |
26 | int (*init)(struct shash_desc *desc); | 26 | int (*init)(struct shash_desc *desc); |
27 | int (*reinit)(struct shash_desc *desc); | ||
28 | int (*update)(struct shash_desc *desc, const u8 *data, | 27 | int (*update)(struct shash_desc *desc, const u8 *data, |
29 | unsigned int len); | 28 | unsigned int len); |
30 | int (*final)(struct shash_desc *desc, u8 *out); | 29 | int (*final)(struct shash_desc *desc, u8 *out); |
@@ -32,11 +31,14 @@ struct shash_alg { | |||
32 | unsigned int len, u8 *out); | 31 | unsigned int len, u8 *out); |
33 | int (*digest)(struct shash_desc *desc, const u8 *data, | 32 | int (*digest)(struct shash_desc *desc, const u8 *data, |
34 | unsigned int len, u8 *out); | 33 | unsigned int len, u8 *out); |
34 | int (*export)(struct shash_desc *desc, void *out); | ||
35 | int (*import)(struct shash_desc *desc, const void *in); | ||
35 | int (*setkey)(struct crypto_shash *tfm, const u8 *key, | 36 | int (*setkey)(struct crypto_shash *tfm, const u8 *key, |
36 | unsigned int keylen); | 37 | unsigned int keylen); |
37 | 38 | ||
38 | unsigned int descsize; | 39 | unsigned int descsize; |
39 | unsigned int digestsize; | 40 | unsigned int digestsize; |
41 | unsigned int statesize; | ||
40 | 42 | ||
41 | struct crypto_alg base; | 43 | struct crypto_alg base; |
42 | }; | 44 | }; |
@@ -251,6 +253,11 @@ static inline unsigned int crypto_shash_digestsize(struct crypto_shash *tfm) | |||
251 | return crypto_shash_alg(tfm)->digestsize; | 253 | return crypto_shash_alg(tfm)->digestsize; |
252 | } | 254 | } |
253 | 255 | ||
256 | static inline unsigned int crypto_shash_statesize(struct crypto_shash *tfm) | ||
257 | { | ||
258 | return crypto_shash_alg(tfm)->statesize; | ||
259 | } | ||
260 | |||
254 | static inline u32 crypto_shash_get_flags(struct crypto_shash *tfm) | 261 | static inline u32 crypto_shash_get_flags(struct crypto_shash *tfm) |
255 | { | 262 | { |
256 | return crypto_tfm_get_flags(crypto_shash_tfm(tfm)); | 263 | return crypto_tfm_get_flags(crypto_shash_tfm(tfm)); |
@@ -281,12 +288,15 @@ int crypto_shash_setkey(struct crypto_shash *tfm, const u8 *key, | |||
281 | int crypto_shash_digest(struct shash_desc *desc, const u8 *data, | 288 | int crypto_shash_digest(struct shash_desc *desc, const u8 *data, |
282 | unsigned int len, u8 *out); | 289 | unsigned int len, u8 *out); |
283 | 290 | ||
284 | static inline void crypto_shash_export(struct shash_desc *desc, u8 *out) | 291 | static inline int crypto_shash_export(struct shash_desc *desc, void *out) |
285 | { | 292 | { |
286 | memcpy(out, shash_desc_ctx(desc), crypto_shash_descsize(desc->tfm)); | 293 | return crypto_shash_alg(desc->tfm)->export(desc, out); |
287 | } | 294 | } |
288 | 295 | ||
289 | int crypto_shash_import(struct shash_desc *desc, const u8 *in); | 296 | static inline int crypto_shash_import(struct shash_desc *desc, const void *in) |
297 | { | ||
298 | return crypto_shash_alg(desc->tfm)->import(desc, in); | ||
299 | } | ||
290 | 300 | ||
291 | static inline int crypto_shash_init(struct shash_desc *desc) | 301 | static inline int crypto_shash_init(struct shash_desc *desc) |
292 | { | 302 | { |