diff options
Diffstat (limited to 'include/crypto/internal')
| -rw-r--r-- | include/crypto/internal/hash.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h index f0b44c16e88f..c2bae8da642c 100644 --- a/include/crypto/internal/hash.h +++ b/include/crypto/internal/hash.h @@ -82,6 +82,14 @@ int ahash_register_instance(struct crypto_template *tmpl,  			    struct ahash_instance *inst);  void ahash_free_instance(struct crypto_instance *inst); +int shash_no_setkey(struct crypto_shash *tfm, const u8 *key, +		    unsigned int keylen); + +static inline bool crypto_shash_alg_has_setkey(struct shash_alg *alg) +{ +	return alg->setkey != shash_no_setkey; +} +  int crypto_init_ahash_spawn(struct crypto_ahash_spawn *spawn,  			    struct hash_alg_common *alg,  			    struct crypto_instance *inst); |