blob: 0317a3547cb9982aa6e4d47a9fece44a603f94c5 [file] [log] [blame]
Jan Glauber0a497c172006-01-06 00:19:18 -08001/*
2 * Cryptographic API.
3 *
Jan Glaubere3b4f512011-07-04 20:06:01 +08004 * s390 implementation of the SHA256 and SHA224 Secure Hash Algorithm.
Jan Glauber0a497c172006-01-06 00:19:18 -08005 *
6 * s390 Version:
Jan Glaubere3b4f512011-07-04 20:06:01 +08007 * Copyright IBM Corp. 2005,2011
Jan Glauber0a497c172006-01-06 00:19:18 -08008 * Author(s): Jan Glauber (jang@de.ibm.com)
9 *
Jan Glauber0a497c172006-01-06 00:19:18 -080010 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 *
15 */
Herbert Xu563f3462009-01-18 20:33:33 +110016#include <crypto/internal/hash.h>
Jan Glauber0a497c172006-01-06 00:19:18 -080017#include <linux/init.h>
18#include <linux/module.h>
Jan Glauber5265eeb2007-10-09 22:43:13 +080019#include <crypto/sha.h>
Jan Glauber0a497c172006-01-06 00:19:18 -080020
21#include "crypt_s390.h"
Jan Glauber604973f2008-03-06 19:50:20 +080022#include "sha.h"
Jan Glauber0a497c172006-01-06 00:19:18 -080023
Herbert Xu563f3462009-01-18 20:33:33 +110024static int sha256_init(struct shash_desc *desc)
Jan Glauber0a497c172006-01-06 00:19:18 -080025{
Herbert Xu563f3462009-01-18 20:33:33 +110026 struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
Jan Glauber0a497c172006-01-06 00:19:18 -080027
Jan Glauber5265eeb2007-10-09 22:43:13 +080028 sctx->state[0] = SHA256_H0;
29 sctx->state[1] = SHA256_H1;
30 sctx->state[2] = SHA256_H2;
31 sctx->state[3] = SHA256_H3;
32 sctx->state[4] = SHA256_H4;
33 sctx->state[5] = SHA256_H5;
34 sctx->state[6] = SHA256_H6;
35 sctx->state[7] = SHA256_H7;
Jan Glauber0a497c172006-01-06 00:19:18 -080036 sctx->count = 0;
Jan Glauber604973f2008-03-06 19:50:20 +080037 sctx->func = KIMD_SHA_256;
Herbert Xu563f3462009-01-18 20:33:33 +110038
39 return 0;
Jan Glauber0a497c172006-01-06 00:19:18 -080040}
41
Herbert Xuf63559b2009-07-10 13:20:32 +080042static int sha256_export(struct shash_desc *desc, void *out)
43{
44 struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
45 struct sha256_state *octx = out;
46
47 octx->count = sctx->count;
48 memcpy(octx->state, sctx->state, sizeof(octx->state));
49 memcpy(octx->buf, sctx->buf, sizeof(octx->buf));
50 return 0;
51}
52
Jan Glauber81bd5f62009-09-05 16:27:35 +100053static int sha256_import(struct shash_desc *desc, const void *in)
Herbert Xuf63559b2009-07-10 13:20:32 +080054{
Sachin Sant2a549c32009-07-16 19:58:42 +080055 struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
Jan Glauber81bd5f62009-09-05 16:27:35 +100056 const struct sha256_state *ictx = in;
Herbert Xuf63559b2009-07-10 13:20:32 +080057
58 sctx->count = ictx->count;
59 memcpy(sctx->state, ictx->state, sizeof(ictx->state));
60 memcpy(sctx->buf, ictx->buf, sizeof(ictx->buf));
61 sctx->func = KIMD_SHA_256;
62 return 0;
63}
64
Jan Glaubere3b4f512011-07-04 20:06:01 +080065static struct shash_alg sha256_alg = {
Herbert Xu563f3462009-01-18 20:33:33 +110066 .digestsize = SHA256_DIGEST_SIZE,
67 .init = sha256_init,
68 .update = s390_sha_update,
69 .final = s390_sha_final,
Herbert Xuf63559b2009-07-10 13:20:32 +080070 .export = sha256_export,
71 .import = sha256_import,
Herbert Xu563f3462009-01-18 20:33:33 +110072 .descsize = sizeof(struct s390_sha_ctx),
Herbert Xuf63559b2009-07-10 13:20:32 +080073 .statesize = sizeof(struct sha256_state),
Herbert Xu563f3462009-01-18 20:33:33 +110074 .base = {
75 .cra_name = "sha256",
76 .cra_driver_name= "sha256-s390",
77 .cra_priority = CRYPT_S390_PRIORITY,
78 .cra_flags = CRYPTO_ALG_TYPE_SHASH,
79 .cra_blocksize = SHA256_BLOCK_SIZE,
80 .cra_module = THIS_MODULE,
81 }
Jan Glauber0a497c172006-01-06 00:19:18 -080082};
83
Jan Glaubere3b4f512011-07-04 20:06:01 +080084static int sha224_init(struct shash_desc *desc)
Jan Glauber0a497c172006-01-06 00:19:18 -080085{
Jan Glaubere3b4f512011-07-04 20:06:01 +080086 struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
87
88 sctx->state[0] = SHA224_H0;
89 sctx->state[1] = SHA224_H1;
90 sctx->state[2] = SHA224_H2;
91 sctx->state[3] = SHA224_H3;
92 sctx->state[4] = SHA224_H4;
93 sctx->state[5] = SHA224_H5;
94 sctx->state[6] = SHA224_H6;
95 sctx->state[7] = SHA224_H7;
96 sctx->count = 0;
97 sctx->func = KIMD_SHA_256;
98
99 return 0;
100}
101
102static struct shash_alg sha224_alg = {
103 .digestsize = SHA224_DIGEST_SIZE,
104 .init = sha224_init,
105 .update = s390_sha_update,
106 .final = s390_sha_final,
107 .export = sha256_export,
108 .import = sha256_import,
109 .descsize = sizeof(struct s390_sha_ctx),
110 .statesize = sizeof(struct sha256_state),
111 .base = {
112 .cra_name = "sha224",
113 .cra_driver_name= "sha224-s390",
114 .cra_priority = CRYPT_S390_PRIORITY,
115 .cra_flags = CRYPTO_ALG_TYPE_SHASH,
116 .cra_blocksize = SHA224_BLOCK_SIZE,
117 .cra_module = THIS_MODULE,
118 }
119};
120
121static int __init sha256_s390_init(void)
122{
123 int ret;
124
Jan Glauber1822bc92011-04-19 21:29:14 +0200125 if (!crypt_s390_func_available(KIMD_SHA_256, CRYPT_S390_MSA))
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100126 return -EOPNOTSUPP;
Jan Glaubere3b4f512011-07-04 20:06:01 +0800127 ret = crypto_register_shash(&sha256_alg);
128 if (ret < 0)
129 goto out;
130 ret = crypto_register_shash(&sha224_alg);
131 if (ret < 0)
132 crypto_unregister_shash(&sha256_alg);
133out:
134 return ret;
Jan Glauber0a497c172006-01-06 00:19:18 -0800135}
136
Heiko Carstens9f7819c2008-04-17 07:46:17 +0200137static void __exit sha256_s390_fini(void)
Jan Glauber0a497c172006-01-06 00:19:18 -0800138{
Jan Glaubere3b4f512011-07-04 20:06:01 +0800139 crypto_unregister_shash(&sha224_alg);
140 crypto_unregister_shash(&sha256_alg);
Jan Glauber0a497c172006-01-06 00:19:18 -0800141}
142
Heiko Carstens9f7819c2008-04-17 07:46:17 +0200143module_init(sha256_s390_init);
144module_exit(sha256_s390_fini);
Jan Glauber0a497c172006-01-06 00:19:18 -0800145
146MODULE_ALIAS("sha256");
Jan Glaubere3b4f512011-07-04 20:06:01 +0800147MODULE_ALIAS("sha224");
Jan Glauber0a497c172006-01-06 00:19:18 -0800148MODULE_LICENSE("GPL");
Jan Glaubere3b4f512011-07-04 20:06:01 +0800149MODULE_DESCRIPTION("SHA256 and SHA224 Secure Hash Algorithm");