Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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