2 * sha1-ce-glue.c - SHA-1 secure hash using ARMv8 Crypto Extensions
4 * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <crypto/internal/hash.h>
12 #include <crypto/sha.h>
13 #include <crypto/sha1_base.h>
14 #include <linux/crypto.h>
15 #include <linux/module.h>
17 #include <asm/hwcap.h>
23 MODULE_DESCRIPTION("SHA1 secure hash using ARMv8 Crypto Extensions");
24 MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
25 MODULE_LICENSE("GPL v2");
27 asmlinkage
void sha1_ce_transform(struct sha1_state
*sst
, u8
const *src
,
30 static int sha1_ce_update(struct shash_desc
*desc
, const u8
*data
,
33 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
35 if (!may_use_simd() ||
36 (sctx
->count
% SHA1_BLOCK_SIZE
) + len
< SHA1_BLOCK_SIZE
)
37 return sha1_update_arm(desc
, data
, len
);
40 sha1_base_do_update(desc
, data
, len
, sha1_ce_transform
);
46 static int sha1_ce_finup(struct shash_desc
*desc
, const u8
*data
,
47 unsigned int len
, u8
*out
)
50 return sha1_finup_arm(desc
, data
, len
, out
);
54 sha1_base_do_update(desc
, data
, len
, sha1_ce_transform
);
55 sha1_base_do_finalize(desc
, sha1_ce_transform
);
58 return sha1_base_finish(desc
, out
);
61 static int sha1_ce_final(struct shash_desc
*desc
, u8
*out
)
63 return sha1_ce_finup(desc
, NULL
, 0, out
);
66 static struct shash_alg alg
= {
67 .init
= sha1_base_init
,
68 .update
= sha1_ce_update
,
69 .final
= sha1_ce_final
,
70 .finup
= sha1_ce_finup
,
71 .descsize
= sizeof(struct sha1_state
),
72 .digestsize
= SHA1_DIGEST_SIZE
,
75 .cra_driver_name
= "sha1-ce",
77 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
,
78 .cra_blocksize
= SHA1_BLOCK_SIZE
,
79 .cra_module
= THIS_MODULE
,
83 static int __init
sha1_ce_mod_init(void)
85 if (!(elf_hwcap2
& HWCAP2_SHA1
))
87 return crypto_register_shash(&alg
);
90 static void __exit
sha1_ce_mod_fini(void)
92 crypto_unregister_shash(&alg
);
95 module_init(sha1_ce_mod_init
);
96 module_exit(sha1_ce_mod_fini
);