mirror of https://github.com/ipxe/ipxe.git
19 lines
356 B
C
19 lines
356 B
C
#ifndef _IPXE_HASH_DF_H
|
|
#define _IPXE_HASH_DF_H
|
|
|
|
/** @file
|
|
*
|
|
* Hash-based derivation function (Hash_df)
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#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 */
|