4 * s390 implementation of the SHA1 Secure Hash Algorithm.
6 * Derived from cryptoapi implementation, adapted for in-place
7 * scatterlist interface. Originally based on the public domain
8 * implementation written by Steve Reid.
11 * Copyright (C) 2003 IBM Deutschland GmbH, IBM Corporation
12 * Author(s): Thomas Spatzier (tspat@de.ibm.com)
14 * Derived from "crypto/sha1.c"
15 * Copyright (c) Alan Smithee.
16 * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
17 * Copyright (c) Jean-Francois Dive <jef@linuxbe.org>
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License as published by the Free
21 * Software Foundation; either version 2 of the License, or (at your option)
25 #include <linux/init.h>
26 #include <linux/module.h>
28 #include <linux/crypto.h>
29 #include <asm/scatterlist.h>
30 #include <asm/byteorder.h>
31 #include "crypt_s390.h"
33 #define SHA1_DIGEST_SIZE 20
34 #define SHA1_BLOCK_SIZE 64
36 struct crypt_s390_sha1_ctx {
40 u8 buffer[2 * SHA1_BLOCK_SIZE];
46 static const struct crypt_s390_sha1_ctx initstate = {
55 memcpy(ctx, &initstate, sizeof(initstate));
59 sha1_update(void *ctx, const u8 *data, unsigned int len)
61 struct crypt_s390_sha1_ctx *sctx;
65 sctx->count += len * 8; //message bit length
67 //anything in buffer yet? -> must be completed
68 if (sctx->buf_len && (sctx->buf_len + len) >= SHA1_BLOCK_SIZE) {
69 //complete full block and hash
70 memcpy(sctx->buffer + sctx->buf_len, data,
71 SHA1_BLOCK_SIZE - sctx->buf_len);
72 crypt_s390_kimd(KIMD_SHA_1, sctx->state, sctx->buffer,
74 data += SHA1_BLOCK_SIZE - sctx->buf_len;
75 len -= SHA1_BLOCK_SIZE - sctx->buf_len;
79 //rest of data contains full blocks?
80 imd_len = len & ~0x3ful;
82 crypt_s390_kimd(KIMD_SHA_1, sctx->state, data, imd_len);
86 //anything left? store in buffer
88 memcpy(sctx->buffer + sctx->buf_len , data, len);
95 pad_message(struct crypt_s390_sha1_ctx* sctx)
99 index = sctx->buf_len;
100 sctx->buf_len = (sctx->buf_len < 56)?
101 SHA1_BLOCK_SIZE:2 * SHA1_BLOCK_SIZE;
103 sctx->buffer[index] = 0x80;
106 memset(sctx->buffer + index, 0x00, sctx->buf_len - index);
108 memcpy(sctx->buffer + sctx->buf_len - 8, &sctx->count,
112 /* Add padding and return the message digest. */
114 sha1_final(void* ctx, u8 *out)
116 struct crypt_s390_sha1_ctx *sctx = ctx;
118 //must perform manual padding
120 crypt_s390_kimd(KIMD_SHA_1, sctx->state, sctx->buffer, sctx->buf_len);
122 memcpy(out, sctx->state, SHA1_DIGEST_SIZE);
124 memset(sctx, 0, sizeof *sctx);
127 static struct crypto_alg alg = {
129 .cra_flags = CRYPTO_ALG_TYPE_DIGEST,
130 .cra_blocksize = SHA1_BLOCK_SIZE,
131 .cra_ctxsize = sizeof(struct crypt_s390_sha1_ctx),
132 .cra_module = THIS_MODULE,
133 .cra_list = LIST_HEAD_INIT(alg.cra_list),
134 .cra_u = { .digest = {
135 .dia_digestsize = SHA1_DIGEST_SIZE,
136 .dia_init = sha1_init,
137 .dia_update = sha1_update,
138 .dia_final = sha1_final } }
146 if (crypt_s390_func_available(KIMD_SHA_1)){
147 ret = crypto_register_alg(&alg);
149 printk(KERN_INFO "crypt_s390: sha1_s390 loaded.\n");
158 crypto_unregister_alg(&alg);
164 MODULE_ALIAS("sha1");
166 MODULE_LICENSE("GPL");
167 MODULE_DESCRIPTION("SHA1 Secure Hash Algorithm");