blob: 3b377197236e25bdd6ee68647b6784e7cbca80a4 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Hans de Goede08c327f2019-08-17 16:24:35 +02003 * Crypto API wrapper for the generic SHA256 code from lib/crypto/sha256.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com>
6 * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
7 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08008 * SHA224 Support Copyright 2007 Intel Corporation <jonathan.lynch@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080010#include <crypto/internal/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/mm.h>
Herbert Xu06ace7a2005-10-30 21:25:15 +110014#include <linux/types.h>
Eric Biggersa24d22b2020-11-12 21:20:21 -080015#include <crypto/sha2.h>
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020016#include <crypto/sha256_base.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/byteorder.h>
David S. Millerbe34c4ef2014-10-02 14:52:37 +080018#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
LABBE Corentin0c4c78d2015-12-17 13:45:39 +010020const u8 sha224_zero_message_hash[SHA224_DIGEST_SIZE] = {
21 0xd1, 0x4a, 0x02, 0x8c, 0x2a, 0x3a, 0x2b, 0xc9, 0x47,
22 0x61, 0x02, 0xbb, 0x28, 0x82, 0x34, 0xc4, 0x15, 0xa2,
23 0xb0, 0x1f, 0x82, 0x8e, 0xa6, 0x2a, 0xc5, 0xb3, 0xe4,
24 0x2f
25};
26EXPORT_SYMBOL_GPL(sha224_zero_message_hash);
27
28const u8 sha256_zero_message_hash[SHA256_DIGEST_SIZE] = {
29 0xe3, 0xb0, 0xc4, 0x42, 0x98, 0xfc, 0x1c, 0x14,
30 0x9a, 0xfb, 0xf4, 0xc8, 0x99, 0x6f, 0xb9, 0x24,
31 0x27, 0xae, 0x41, 0xe4, 0x64, 0x9b, 0x93, 0x4c,
32 0xa4, 0x95, 0x99, 0x1b, 0x78, 0x52, 0xb8, 0x55
33};
34EXPORT_SYMBOL_GPL(sha256_zero_message_hash);
35
Hans de Goede08c327f2019-08-17 16:24:35 +020036static int crypto_sha256_init(struct shash_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Eric Biggers13855fd2020-05-01 09:42:29 -070038 sha256_init(shash_desc_ctx(desc));
39 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Hans de Goede08c327f2019-08-17 16:24:35 +020042static int crypto_sha224_init(struct shash_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Eric Biggers13855fd2020-05-01 09:42:29 -070044 sha224_init(shash_desc_ctx(desc));
45 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Tim Chen35d2c9d2013-03-26 13:58:49 -070048int crypto_sha256_update(struct shash_desc *desc, const u8 *data,
Herbert Xu6c2bb982006-05-16 22:09:29 +100049 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Eric Biggers13855fd2020-05-01 09:42:29 -070051 sha256_update(shash_desc_ctx(desc), data, len);
52 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
Tim Chen35d2c9d2013-03-26 13:58:49 -070054EXPORT_SYMBOL(crypto_sha256_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Hans de Goede08c327f2019-08-17 16:24:35 +020056static int crypto_sha256_final(struct shash_desc *desc, u8 *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Hans de Goede08c327f2019-08-17 16:24:35 +020058 if (crypto_shash_digestsize(desc->tfm) == SHA224_DIGEST_SIZE)
Eric Biggers13855fd2020-05-01 09:42:29 -070059 sha224_final(shash_desc_ctx(desc), out);
Hans de Goede08c327f2019-08-17 16:24:35 +020060 else
Eric Biggers13855fd2020-05-01 09:42:29 -070061 sha256_final(shash_desc_ctx(desc), out);
62 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020065int crypto_sha256_finup(struct shash_desc *desc, const u8 *data,
66 unsigned int len, u8 *hash)
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080067{
Hans de Goede08c327f2019-08-17 16:24:35 +020068 sha256_update(shash_desc_ctx(desc), data, len);
69 return crypto_sha256_final(desc, hash);
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080070}
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020071EXPORT_SYMBOL(crypto_sha256_finup);
Herbert Xu9b2fda72009-07-10 13:00:27 +080072
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030073static struct shash_alg sha256_algs[2] = { {
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080074 .digestsize = SHA256_DIGEST_SIZE,
Hans de Goede08c327f2019-08-17 16:24:35 +020075 .init = crypto_sha256_init,
Tim Chen35d2c9d2013-03-26 13:58:49 -070076 .update = crypto_sha256_update,
Hans de Goede08c327f2019-08-17 16:24:35 +020077 .final = crypto_sha256_final,
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020078 .finup = crypto_sha256_finup,
Herbert Xu9b2fda72009-07-10 13:00:27 +080079 .descsize = sizeof(struct sha256_state),
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080080 .base = {
81 .cra_name = "sha256",
82 .cra_driver_name= "sha256-generic",
Eric Biggersb73b7ac02018-06-29 17:01:42 -070083 .cra_priority = 100,
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080084 .cra_blocksize = SHA256_BLOCK_SIZE,
85 .cra_module = THIS_MODULE,
86 }
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030087}, {
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080088 .digestsize = SHA224_DIGEST_SIZE,
Hans de Goede08c327f2019-08-17 16:24:35 +020089 .init = crypto_sha224_init,
Tim Chen35d2c9d2013-03-26 13:58:49 -070090 .update = crypto_sha256_update,
Hans de Goede08c327f2019-08-17 16:24:35 +020091 .final = crypto_sha256_final,
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020092 .finup = crypto_sha256_finup,
Herbert Xu9b2fda72009-07-10 13:00:27 +080093 .descsize = sizeof(struct sha256_state),
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080094 .base = {
95 .cra_name = "sha224",
96 .cra_driver_name= "sha224-generic",
Eric Biggersb73b7ac02018-06-29 17:01:42 -070097 .cra_priority = 100,
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080098 .cra_blocksize = SHA224_BLOCK_SIZE,
99 .cra_module = THIS_MODULE,
100 }
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +0300101} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800103static int __init sha256_generic_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +0300105 return crypto_register_shashes(sha256_algs, ARRAY_SIZE(sha256_algs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800108static void __exit sha256_generic_mod_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +0300110 crypto_unregister_shashes(sha256_algs, ARRAY_SIZE(sha256_algs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Eric Biggersc4741b22019-04-11 21:57:42 -0700113subsys_initcall(sha256_generic_mod_init);
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800114module_exit(sha256_generic_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116MODULE_LICENSE("GPL");
Jonathan Lynchcd12fb92007-11-10 20:08:25 +0800117MODULE_DESCRIPTION("SHA-224 and SHA-256 Secure Hash Algorithm");
Michal Ludvigb3be9a62006-07-09 08:59:38 +1000118
Kees Cook5d26a102014-11-20 17:05:53 -0800119MODULE_ALIAS_CRYPTO("sha224");
Mathias Krause3e14dcf2015-01-11 18:17:42 +0100120MODULE_ALIAS_CRYPTO("sha224-generic");
Kees Cook5d26a102014-11-20 17:05:53 -0800121MODULE_ALIAS_CRYPTO("sha256");
Mathias Krause3e14dcf2015-01-11 18:17:42 +0100122MODULE_ALIAS_CRYPTO("sha256-generic");