Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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