blob: e57682446adfc63ac59042b23de48ff6502f3af7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _IPXE_HASH_DF_H
#define _IPXE_HASH_DF_H
/** @file
*
* Hash-based derivation function (Hash_df)
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <stdint.h>
#include <ipxe/crypto.h>
extern void hash_df ( struct digest_algorithm *hash, const void *input,
size_t input_len, void *output, size_t output_len );
#endif /* _IPXE_HASH_DF_H */
|