| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ | 
|---|---|
| 2 | /* | 
| 3 | * Cryptographic API. | 
| 4 | * | 
| 5 | * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au> | 
| 6 | */ | 
| 7 | #ifndef _LOCAL_CRYPTO_HASH_H | 
| 8 | #define _LOCAL_CRYPTO_HASH_H | 
| 9 | |
| 10 | #include <crypto/internal/hash.h> | 
| 11 | |
| 12 | #include "internal.h" | 
| 13 | |
| 14 | extern const struct crypto_type crypto_shash_type; | 
| 15 | |
| 16 | int hash_prepare_alg(struct hash_alg_common *alg); | 
| 17 | |
| 18 | #endif /* _LOCAL_CRYPTO_HASH_H */ | 
| 19 | 
