1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#include <crypto/internal/hash.h>
17#include "sha.h"
18#include "crypt_s390.h"
19
20int s390_sha_update(struct shash_desc *desc, const u8 *data, unsigned int len)
21{
22 struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
23 unsigned int bsize = crypto_shash_blocksize(desc->tfm);
24 unsigned int index;
25 int ret;
26
27
28 index = ctx->count & (bsize - 1);
29 ctx->count += len;
30
31 if ((index + len) < bsize)
32 goto store;
33
34
35 if (index) {
36 memcpy(ctx->buf + index, data, bsize - index);
37 ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, bsize);
38 BUG_ON(ret != bsize);
39 data += bsize - index;
40 len -= bsize - index;
41 index = 0;
42 }
43
44
45 if (len >= bsize) {
46 ret = crypt_s390_kimd(ctx->func, ctx->state, data,
47 len & ~(bsize - 1));
48 BUG_ON(ret != (len & ~(bsize - 1)));
49 data += ret;
50 len -= ret;
51 }
52store:
53 if (len)
54 memcpy(ctx->buf + index , data, len);
55
56 return 0;
57}
58EXPORT_SYMBOL_GPL(s390_sha_update);
59
60int s390_sha_final(struct shash_desc *desc, u8 *out)
61{
62 struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
63 unsigned int bsize = crypto_shash_blocksize(desc->tfm);
64 u64 bits;
65 unsigned int index, end, plen;
66 int ret;
67
68
69 plen = (bsize > SHA256_BLOCK_SIZE) ? 16 : 8;
70
71
72 index = ctx->count & (bsize - 1);
73 end = (index < bsize - plen) ? bsize : (2 * bsize);
74
75
76 ctx->buf[index] = 0x80;
77 index++;
78
79
80 memset(ctx->buf + index, 0x00, end - index - 8);
81
82
83
84
85
86 bits = ctx->count * 8;
87 memcpy(ctx->buf + end - 8, &bits, sizeof(bits));
88
89 ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, end);
90 BUG_ON(ret != end);
91
92
93 memcpy(out, ctx->state, crypto_shash_digestsize(desc->tfm));
94
95 memset(ctx, 0, sizeof *ctx);
96
97 return 0;
98}
99EXPORT_SYMBOL_GPL(s390_sha_final);
100
101MODULE_LICENSE("GPL");
102MODULE_DESCRIPTION("s390 SHA cipher common functions");
103