2006-01-06 08:19:18 +00:00
|
|
|
/*
|
|
|
|
* Cryptographic API.
|
|
|
|
*
|
|
|
|
* s390 implementation of the SHA256 Secure Hash Algorithm.
|
|
|
|
*
|
|
|
|
* s390 Version:
|
2007-02-05 20:18:14 +00:00
|
|
|
* Copyright IBM Corp. 2005,2007
|
2006-01-06 08:19:18 +00:00
|
|
|
* Author(s): Jan Glauber (jang@de.ibm.com)
|
|
|
|
*
|
2007-10-08 03:45:10 +00:00
|
|
|
* Derived from "crypto/sha256_generic.c"
|
2006-01-06 08:19:18 +00:00
|
|
|
* and "arch/s390/crypto/sha1_s390.c"
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/crypto.h>
|
2007-10-09 14:43:13 +00:00
|
|
|
#include <crypto/sha.h>
|
2006-01-06 08:19:18 +00:00
|
|
|
|
|
|
|
#include "crypt_s390.h"
|
2008-03-06 11:50:20 +00:00
|
|
|
#include "sha.h"
|
2006-01-06 08:19:18 +00:00
|
|
|
|
2006-05-16 12:09:29 +00:00
|
|
|
static void sha256_init(struct crypto_tfm *tfm)
|
2006-01-06 08:19:18 +00:00
|
|
|
{
|
2008-03-06 11:50:20 +00:00
|
|
|
struct s390_sha_ctx *sctx = crypto_tfm_ctx(tfm);
|
2006-01-06 08:19:18 +00:00
|
|
|
|
2007-10-09 14:43:13 +00:00
|
|
|
sctx->state[0] = SHA256_H0;
|
|
|
|
sctx->state[1] = SHA256_H1;
|
|
|
|
sctx->state[2] = SHA256_H2;
|
|
|
|
sctx->state[3] = SHA256_H3;
|
|
|
|
sctx->state[4] = SHA256_H4;
|
|
|
|
sctx->state[5] = SHA256_H5;
|
|
|
|
sctx->state[6] = SHA256_H6;
|
|
|
|
sctx->state[7] = SHA256_H7;
|
2006-01-06 08:19:18 +00:00
|
|
|
sctx->count = 0;
|
2008-03-06 11:50:20 +00:00
|
|
|
sctx->func = KIMD_SHA_256;
|
2006-01-06 08:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct crypto_alg alg = {
|
|
|
|
.cra_name = "sha256",
|
2006-08-21 11:18:50 +00:00
|
|
|
.cra_driver_name = "sha256-s390",
|
|
|
|
.cra_priority = CRYPT_S390_PRIORITY,
|
2006-01-06 08:19:18 +00:00
|
|
|
.cra_flags = CRYPTO_ALG_TYPE_DIGEST,
|
|
|
|
.cra_blocksize = SHA256_BLOCK_SIZE,
|
2008-03-06 11:50:20 +00:00
|
|
|
.cra_ctxsize = sizeof(struct s390_sha_ctx),
|
2006-01-06 08:19:18 +00:00
|
|
|
.cra_module = THIS_MODULE,
|
|
|
|
.cra_list = LIST_HEAD_INIT(alg.cra_list),
|
|
|
|
.cra_u = { .digest = {
|
|
|
|
.dia_digestsize = SHA256_DIGEST_SIZE,
|
2006-01-14 21:20:56 +00:00
|
|
|
.dia_init = sha256_init,
|
2008-03-06 11:50:20 +00:00
|
|
|
.dia_update = s390_sha_update,
|
|
|
|
.dia_final = s390_sha_final } }
|
2006-01-06 08:19:18 +00:00
|
|
|
};
|
|
|
|
|
2008-04-17 05:46:17 +00:00
|
|
|
static int sha256_s390_init(void)
|
2006-01-06 08:19:18 +00:00
|
|
|
{
|
|
|
|
if (!crypt_s390_func_available(KIMD_SHA_256))
|
2007-02-05 20:18:14 +00:00
|
|
|
return -EOPNOTSUPP;
|
2006-01-06 08:19:18 +00:00
|
|
|
|
2007-02-05 20:18:14 +00:00
|
|
|
return crypto_register_alg(&alg);
|
2006-01-06 08:19:18 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 05:46:17 +00:00
|
|
|
static void __exit sha256_s390_fini(void)
|
2006-01-06 08:19:18 +00:00
|
|
|
{
|
|
|
|
crypto_unregister_alg(&alg);
|
|
|
|
}
|
|
|
|
|
2008-04-17 05:46:17 +00:00
|
|
|
module_init(sha256_s390_init);
|
|
|
|
module_exit(sha256_s390_fini);
|
2006-01-06 08:19:18 +00:00
|
|
|
|
|
|
|
MODULE_ALIAS("sha256");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DESCRIPTION("SHA256 Secure Hash Algorithm");
|