4 * s390 generic implementation of the SHA Secure Hash Algorithms.
6 * Copyright IBM Corp. 2007
7 * Author(s): Jan Glauber (jang@de.ibm.com)
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)
16 #include <crypto/internal/hash.h>
17 #include <linux/module.h>
19 #include "crypt_s390.h"
21 int s390_sha_update(struct shash_desc
*desc
, const u8
*data
, unsigned int len
)
23 struct s390_sha_ctx
*ctx
= shash_desc_ctx(desc
);
24 unsigned int bsize
= crypto_shash_blocksize(desc
->tfm
);
28 /* how much is already in the buffer? */
29 index
= ctx
->count
& (bsize
- 1);
32 if ((index
+ len
) < bsize
)
35 /* process one stored block */
37 memcpy(ctx
->buf
+ index
, data
, bsize
- index
);
38 ret
= crypt_s390_kimd(ctx
->func
, ctx
->state
, ctx
->buf
, bsize
);
41 data
+= bsize
- index
;
46 /* process as many blocks as possible */
48 ret
= crypt_s390_kimd(ctx
->func
, ctx
->state
, data
,
50 if (ret
!= (len
& ~(bsize
- 1)))
57 memcpy(ctx
->buf
+ index
, data
, len
);
61 EXPORT_SYMBOL_GPL(s390_sha_update
);
63 int s390_sha_final(struct shash_desc
*desc
, u8
*out
)
65 struct s390_sha_ctx
*ctx
= shash_desc_ctx(desc
);
66 unsigned int bsize
= crypto_shash_blocksize(desc
->tfm
);
68 unsigned int index
, end
, plen
;
71 /* SHA-512 uses 128 bit padding length */
72 plen
= (bsize
> SHA256_BLOCK_SIZE
) ? 16 : 8;
74 /* must perform manual padding */
75 index
= ctx
->count
& (bsize
- 1);
76 end
= (index
< bsize
- plen
) ? bsize
: (2 * bsize
);
78 /* start pad with 1 */
79 ctx
->buf
[index
] = 0x80;
83 memset(ctx
->buf
+ index
, 0x00, end
- index
- 8);
86 * Append message length. Well, SHA-512 wants a 128 bit length value,
87 * nevertheless we use u64, should be enough for now...
89 bits
= ctx
->count
* 8;
90 memcpy(ctx
->buf
+ end
- 8, &bits
, sizeof(bits
));
92 ret
= crypt_s390_kimd(ctx
->func
, ctx
->state
, ctx
->buf
, end
);
96 /* copy digest to out */
97 memcpy(out
, ctx
->state
, crypto_shash_digestsize(desc
->tfm
));
99 memset(ctx
, 0, sizeof *ctx
);
103 EXPORT_SYMBOL_GPL(s390_sha_final
);
105 MODULE_LICENSE("GPL");
106 MODULE_DESCRIPTION("s390 SHA cipher common functions");