2 * Glue code for the SHA256 Secure Hash Algorithm assembly implementation
3 * using optimized ARM assembler and NEON instructions.
5 * Copyright © 2015 Google Inc.
7 * This file is based on sha256_ssse3_glue.c:
8 * Copyright (C) 2013 Intel Corporation
9 * Author: Tim Chen <tim.c.chen@linux.intel.com>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
18 #include <crypto/internal/hash.h>
19 #include <linux/crypto.h>
20 #include <linux/init.h>
21 #include <linux/module.h>
23 #include <linux/cryptohash.h>
24 #include <linux/types.h>
25 #include <linux/string.h>
26 #include <crypto/sha.h>
27 #include <crypto/sha256_base.h>
31 #include "sha256_glue.h"
33 asmlinkage
void sha256_block_data_order(u32
*digest
, const void *data
,
34 unsigned int num_blks
);
36 int crypto_sha256_arm_update(struct shash_desc
*desc
, const u8
*data
,
39 /* make sure casting to sha256_block_fn() is safe */
40 BUILD_BUG_ON(offsetof(struct sha256_state
, state
) != 0);
42 return sha256_base_do_update(desc
, data
, len
,
43 (sha256_block_fn
*)sha256_block_data_order
);
45 EXPORT_SYMBOL(crypto_sha256_arm_update
);
47 static int sha256_final(struct shash_desc
*desc
, u8
*out
)
49 sha256_base_do_finalize(desc
,
50 (sha256_block_fn
*)sha256_block_data_order
);
51 return sha256_base_finish(desc
, out
);
54 int crypto_sha256_arm_finup(struct shash_desc
*desc
, const u8
*data
,
55 unsigned int len
, u8
*out
)
57 sha256_base_do_update(desc
, data
, len
,
58 (sha256_block_fn
*)sha256_block_data_order
);
59 return sha256_final(desc
, out
);
61 EXPORT_SYMBOL(crypto_sha256_arm_finup
);
63 static struct shash_alg algs
[] = { {
64 .digestsize
= SHA256_DIGEST_SIZE
,
65 .init
= sha256_base_init
,
66 .update
= crypto_sha256_arm_update
,
67 .final
= sha256_final
,
68 .finup
= crypto_sha256_arm_finup
,
69 .descsize
= sizeof(struct sha256_state
),
72 .cra_driver_name
= "sha256-asm",
74 .cra_blocksize
= SHA256_BLOCK_SIZE
,
75 .cra_module
= THIS_MODULE
,
78 .digestsize
= SHA224_DIGEST_SIZE
,
79 .init
= sha224_base_init
,
80 .update
= crypto_sha256_arm_update
,
81 .final
= sha256_final
,
82 .finup
= crypto_sha256_arm_finup
,
83 .descsize
= sizeof(struct sha256_state
),
86 .cra_driver_name
= "sha224-asm",
88 .cra_blocksize
= SHA224_BLOCK_SIZE
,
89 .cra_module
= THIS_MODULE
,
93 static int __init
sha256_mod_init(void)
95 int res
= crypto_register_shashes(algs
, ARRAY_SIZE(algs
));
100 if (IS_ENABLED(CONFIG_KERNEL_MODE_NEON
) && cpu_has_neon()) {
101 res
= crypto_register_shashes(sha256_neon_algs
,
102 ARRAY_SIZE(sha256_neon_algs
));
105 crypto_unregister_shashes(algs
, ARRAY_SIZE(algs
));
111 static void __exit
sha256_mod_fini(void)
113 crypto_unregister_shashes(algs
, ARRAY_SIZE(algs
));
115 if (IS_ENABLED(CONFIG_KERNEL_MODE_NEON
) && cpu_has_neon())
116 crypto_unregister_shashes(sha256_neon_algs
,
117 ARRAY_SIZE(sha256_neon_algs
));
120 module_init(sha256_mod_init
);
121 module_exit(sha256_mod_fini
);
123 MODULE_LICENSE("GPL");
124 MODULE_DESCRIPTION("SHA256 Secure Hash Algorithm (ARM), including NEON");
126 MODULE_ALIAS_CRYPTO("sha256");