2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-03-26 00:03:28 +00:00
Files
xNBA/src/include/ipxe/hash_df.h
2012-03-05 23:23:45 +00:00

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 */