diff options
author | Jan Glauber <jang@linux.vnet.ibm.com> | 2008-03-06 06:50:20 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-04-20 22:19:11 -0400 |
commit | 604973f1fe41b817c1badb3df2008fe641e50ae6 (patch) | |
tree | dca1cf2234a9d8178e45952f4ff0e95f386def5c /arch/s390/crypto/sha_common.c | |
parent | 607424d8583365418a337aa51e83403c8bd213ed (diff) |
[CRYPTO] s390: Generic sha_update and sha_final
The sha_{update|final} functions are similar for every sha variant.
Since that is error-prone and redundant replace these functions by
a shared generic implementation for s390.
Signed-off-by: Jan Glauber <jang@linux.vnet.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/s390/crypto/sha_common.c')
-rw-r--r-- | arch/s390/crypto/sha_common.c | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/arch/s390/crypto/sha_common.c b/arch/s390/crypto/sha_common.c new file mode 100644 index 000000000000..80b6f2ba005e --- /dev/null +++ b/arch/s390/crypto/sha_common.c | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | * Cryptographic API. | ||
3 | * | ||
4 | * s390 generic implementation of the SHA Secure Hash Algorithms. | ||
5 | * | ||
6 | * Copyright IBM Corp. 2007 | ||
7 | * Author(s): Jan Glauber (jang@de.ibm.com) | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the Free | ||
11 | * Software Foundation; either version 2 of the License, or (at your option) | ||
12 | * any later version. | ||
13 | * | ||
14 | */ | ||
15 | |||
16 | #include <linux/crypto.h> | ||
17 | #include "sha.h" | ||
18 | #include "crypt_s390.h" | ||
19 | |||
20 | void s390_sha_update(struct crypto_tfm *tfm, const u8 *data, unsigned int len) | ||
21 | { | ||
22 | struct s390_sha_ctx *ctx = crypto_tfm_ctx(tfm); | ||
23 | unsigned int bsize = crypto_tfm_alg_blocksize(tfm); | ||
24 | unsigned int index; | ||
25 | int ret; | ||
26 | |||
27 | /* how much is already in the buffer? */ | ||
28 | index = ctx->count & (bsize - 1); | ||
29 | ctx->count += len; | ||
30 | |||
31 | if ((index + len) < bsize) | ||
32 | goto store; | ||
33 | |||
34 | /* process one stored block */ | ||
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 | } | ||
42 | |||
43 | /* process as many blocks as possible */ | ||
44 | if (len >= bsize) { | ||
45 | ret = crypt_s390_kimd(ctx->func, ctx->state, data, | ||
46 | len & ~(bsize - 1)); | ||
47 | BUG_ON(ret != (len & ~(bsize - 1))); | ||
48 | data += ret; | ||
49 | len -= ret; | ||
50 | } | ||
51 | store: | ||
52 | if (len) | ||
53 | memcpy(ctx->buf + index , data, len); | ||
54 | } | ||
55 | EXPORT_SYMBOL_GPL(s390_sha_update); | ||
56 | |||
57 | void s390_sha_final(struct crypto_tfm *tfm, u8 *out) | ||
58 | { | ||
59 | struct s390_sha_ctx *ctx = crypto_tfm_ctx(tfm); | ||
60 | unsigned int bsize = crypto_tfm_alg_blocksize(tfm); | ||
61 | u64 bits; | ||
62 | unsigned int index, end; | ||
63 | int ret; | ||
64 | |||
65 | /* must perform manual padding */ | ||
66 | index = ctx->count & (bsize - 1); | ||
67 | end = (index < bsize - 8) ? bsize : (2 * bsize); | ||
68 | |||
69 | /* start pad with 1 */ | ||
70 | ctx->buf[index] = 0x80; | ||
71 | index++; | ||
72 | |||
73 | /* pad with zeros */ | ||
74 | memset(ctx->buf + index, 0x00, end - index - 8); | ||
75 | |||
76 | bits = ctx->count * 8; | ||
77 | memcpy(ctx->buf + end - 8, &bits, sizeof(bits)); | ||
78 | |||
79 | ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, end); | ||
80 | BUG_ON(ret != end); | ||
81 | |||
82 | /* copy digest to out */ | ||
83 | memcpy(out, ctx->state, crypto_hash_digestsize(crypto_hash_cast(tfm))); | ||
84 | /* wipe context */ | ||
85 | memset(ctx, 0, sizeof *ctx); | ||
86 | } | ||
87 | EXPORT_SYMBOL_GPL(s390_sha_final); | ||
88 | |||
89 | MODULE_LICENSE("GPL"); | ||
90 | MODULE_DESCRIPTION("s390 SHA cipher common functions"); | ||