blob: bf147b01e313547fba544cf8e99248e5d988098d [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
Tim Chen35d2c9d2013-03-26 13:58:49 -070036int crypto_sha256_update(struct shash_desc *desc, const u8 *data,
Herbert Xu6c2bb982006-05-16 22:09:29 +100037 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Eric Biggers13855fd2020-05-01 09:42:29 -070039 sha256_update(shash_desc_ctx(desc), data, len);
40 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
Tim Chen35d2c9d2013-03-26 13:58:49 -070042EXPORT_SYMBOL(crypto_sha256_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Hans de Goede08c327f2019-08-17 16:24:35 +020044static int crypto_sha256_final(struct shash_desc *desc, u8 *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Hans de Goede08c327f2019-08-17 16:24:35 +020046 if (crypto_shash_digestsize(desc->tfm) == SHA224_DIGEST_SIZE)
Eric Biggers13855fd2020-05-01 09:42:29 -070047 sha224_final(shash_desc_ctx(desc), out);
Hans de Goede08c327f2019-08-17 16:24:35 +020048 else
Eric Biggers13855fd2020-05-01 09:42:29 -070049 sha256_final(shash_desc_ctx(desc), out);
50 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020053int crypto_sha256_finup(struct shash_desc *desc, const u8 *data,
54 unsigned int len, u8 *hash)
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080055{
Hans de Goede08c327f2019-08-17 16:24:35 +020056 sha256_update(shash_desc_ctx(desc), data, len);
57 return crypto_sha256_final(desc, hash);
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080058}
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020059EXPORT_SYMBOL(crypto_sha256_finup);
Herbert Xu9b2fda72009-07-10 13:00:27 +080060
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030061static struct shash_alg sha256_algs[2] = { {
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080062 .digestsize = SHA256_DIGEST_SIZE,
Tianjia Zhang96ede302021-12-20 17:23:14 +080063 .init = sha256_base_init,
Tim Chen35d2c9d2013-03-26 13:58:49 -070064 .update = crypto_sha256_update,
Hans de Goede08c327f2019-08-17 16:24:35 +020065 .final = crypto_sha256_final,
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020066 .finup = crypto_sha256_finup,
Herbert Xu9b2fda72009-07-10 13:00:27 +080067 .descsize = sizeof(struct sha256_state),
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080068 .base = {
69 .cra_name = "sha256",
70 .cra_driver_name= "sha256-generic",
Eric Biggersb73b7ac02018-06-29 17:01:42 -070071 .cra_priority = 100,
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080072 .cra_blocksize = SHA256_BLOCK_SIZE,
73 .cra_module = THIS_MODULE,
74 }
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030075}, {
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080076 .digestsize = SHA224_DIGEST_SIZE,
Tianjia Zhang96ede302021-12-20 17:23:14 +080077 .init = sha224_base_init,
Tim Chen35d2c9d2013-03-26 13:58:49 -070078 .update = crypto_sha256_update,
Hans de Goede08c327f2019-08-17 16:24:35 +020079 .final = crypto_sha256_final,
Ard Biesheuvela2e5ba42015-04-09 12:55:37 +020080 .finup = crypto_sha256_finup,
Herbert Xu9b2fda72009-07-10 13:00:27 +080081 .descsize = sizeof(struct sha256_state),
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080082 .base = {
83 .cra_name = "sha224",
84 .cra_driver_name= "sha224-generic",
Eric Biggersb73b7ac02018-06-29 17:01:42 -070085 .cra_priority = 100,
Adrian-Ken Rueegsegger50e109b52008-12-03 19:57:49 +080086 .cra_blocksize = SHA224_BLOCK_SIZE,
87 .cra_module = THIS_MODULE,
88 }
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030089} };
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Kamalesh Babulal3af5b902008-04-05 21:00:57 +080091static int __init sha256_generic_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030093 return crypto_register_shashes(sha256_algs, ARRAY_SIZE(sha256_algs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
Kamalesh Babulal3af5b902008-04-05 21:00:57 +080096static void __exit sha256_generic_mod_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Jussi Kivilinna6aeb49b2012-07-11 14:20:30 +030098 crypto_unregister_shashes(sha256_algs, ARRAY_SIZE(sha256_algs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Eric Biggersc4741b22019-04-11 21:57:42 -0700101subsys_initcall(sha256_generic_mod_init);
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800102module_exit(sha256_generic_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104MODULE_LICENSE("GPL");
Jonathan Lynchcd12fb92007-11-10 20:08:25 +0800105MODULE_DESCRIPTION("SHA-224 and SHA-256 Secure Hash Algorithm");
Michal Ludvigb3be9a62006-07-09 08:59:38 +1000106
Kees Cook5d26a102014-11-20 17:05:53 -0800107MODULE_ALIAS_CRYPTO("sha224");
Mathias Krause3e14dcf2015-01-11 18:17:42 +0100108MODULE_ALIAS_CRYPTO("sha224-generic");
Kees Cook5d26a102014-11-20 17:05:53 -0800109MODULE_ALIAS_CRYPTO("sha256");
Mathias Krause3e14dcf2015-01-11 18:17:42 +0100110MODULE_ALIAS_CRYPTO("sha256-generic");