diff options
Diffstat (limited to 'include/crypto/hash.h')
-rw-r--r-- | include/crypto/hash.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/crypto/hash.h b/include/crypto/hash.h index f74214a4b01b..fcc02d978231 100644 --- a/include/crypto/hash.h +++ b/include/crypto/hash.h | |||
@@ -48,6 +48,7 @@ struct crypto_ahash { | |||
48 | }; | 48 | }; |
49 | 49 | ||
50 | struct crypto_shash { | 50 | struct crypto_shash { |
51 | unsigned int descsize; | ||
51 | struct crypto_tfm base; | 52 | struct crypto_tfm base; |
52 | }; | 53 | }; |
53 | 54 | ||
@@ -275,7 +276,7 @@ static inline void crypto_shash_clear_flags(struct crypto_shash *tfm, u32 flags) | |||
275 | 276 | ||
276 | static inline unsigned int crypto_shash_descsize(struct crypto_shash *tfm) | 277 | static inline unsigned int crypto_shash_descsize(struct crypto_shash *tfm) |
277 | { | 278 | { |
278 | return crypto_shash_alg(tfm)->descsize; | 279 | return tfm->descsize; |
279 | } | 280 | } |
280 | 281 | ||
281 | static inline void *shash_desc_ctx(struct shash_desc *desc) | 282 | static inline void *shash_desc_ctx(struct shash_desc *desc) |