You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hash_df.h 364B

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