2 * sha1_base.h - core logic for SHA-1 implementations
4 * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <crypto/internal/hash.h>
12 #include <crypto/sha.h>
13 #include <linux/crypto.h>
14 #include <linux/module.h>
16 #include <asm/unaligned.h>
18 typedef void (sha1_block_fn
)(struct sha1_state
*sst
, u8
const *src
, int blocks
);
20 static inline int sha1_base_init(struct shash_desc
*desc
)
22 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
24 sctx
->state
[0] = SHA1_H0
;
25 sctx
->state
[1] = SHA1_H1
;
26 sctx
->state
[2] = SHA1_H2
;
27 sctx
->state
[3] = SHA1_H3
;
28 sctx
->state
[4] = SHA1_H4
;
34 static inline int sha1_base_do_update(struct shash_desc
*desc
,
37 sha1_block_fn
*block_fn
)
39 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
40 unsigned int partial
= sctx
->count
% SHA1_BLOCK_SIZE
;
44 if (unlikely((partial
+ len
) >= SHA1_BLOCK_SIZE
)) {
48 int p
= SHA1_BLOCK_SIZE
- partial
;
50 memcpy(sctx
->buffer
+ partial
, data
, p
);
54 block_fn(sctx
, sctx
->buffer
, 1);
57 blocks
= len
/ SHA1_BLOCK_SIZE
;
58 len
%= SHA1_BLOCK_SIZE
;
61 block_fn(sctx
, data
, blocks
);
62 data
+= blocks
* SHA1_BLOCK_SIZE
;
67 memcpy(sctx
->buffer
+ partial
, data
, len
);
72 static inline int sha1_base_do_finalize(struct shash_desc
*desc
,
73 sha1_block_fn
*block_fn
)
75 const int bit_offset
= SHA1_BLOCK_SIZE
- sizeof(__be64
);
76 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
77 __be64
*bits
= (__be64
*)(sctx
->buffer
+ bit_offset
);
78 unsigned int partial
= sctx
->count
% SHA1_BLOCK_SIZE
;
80 sctx
->buffer
[partial
++] = 0x80;
81 if (partial
> bit_offset
) {
82 memset(sctx
->buffer
+ partial
, 0x0, SHA1_BLOCK_SIZE
- partial
);
85 block_fn(sctx
, sctx
->buffer
, 1);
88 memset(sctx
->buffer
+ partial
, 0x0, bit_offset
- partial
);
89 *bits
= cpu_to_be64(sctx
->count
<< 3);
90 block_fn(sctx
, sctx
->buffer
, 1);
95 static inline int sha1_base_finish(struct shash_desc
*desc
, u8
*out
)
97 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
98 __be32
*digest
= (__be32
*)out
;
101 for (i
= 0; i
< SHA1_DIGEST_SIZE
/ sizeof(__be32
); i
++)
102 put_unaligned_be32(sctx
->state
[i
], digest
++);
104 *sctx
= (struct sha1_state
){};