diff options
Diffstat (limited to 'crypto/shash.c')
-rw-r--r-- | crypto/shash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/shash.c b/crypto/shash.c index 3d242425d692..783231090005 100644 --- a/crypto/shash.c +++ b/crypto/shash.c | |||
@@ -154,8 +154,7 @@ static int shash_digest_unaligned(struct shash_desc *desc, const u8 *data, | |||
154 | unsigned int len, u8 *out) | 154 | unsigned int len, u8 *out) |
155 | { | 155 | { |
156 | return crypto_shash_init(desc) ?: | 156 | return crypto_shash_init(desc) ?: |
157 | crypto_shash_update(desc, data, len) ?: | 157 | crypto_shash_finup(desc, data, len, out); |
158 | crypto_shash_final(desc, out); | ||
159 | } | 158 | } |
160 | 159 | ||
161 | int crypto_shash_digest(struct shash_desc *desc, const u8 *data, | 160 | int crypto_shash_digest(struct shash_desc *desc, const u8 *data, |