Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

38 wiersze
694 B

  1. /*
  2. hash_address.h version 20160722
  3. Andreas Hülsing
  4. Joost Rijneveld
  5. Public domain.
  6. */
  7. #include <stdint.h>
  8. void setLayerADRS(uint32_t adrs[8], uint32_t layer);
  9. void setTreeADRS(uint32_t adrs[8], uint64_t tree);
  10. void setType(uint32_t adrs[8], uint32_t type);
  11. void setKeyAndMask(uint32_t adrs[8], uint32_t keyAndMask);
  12. // OTS
  13. void setOTSADRS(uint32_t adrs[8], uint32_t ots);
  14. void setChainADRS(uint32_t adrs[8], uint32_t chain);
  15. void setHashADRS(uint32_t adrs[8], uint32_t hash);
  16. // L-tree
  17. void setLtreeADRS(uint32_t adrs[8], uint32_t ltree);
  18. // Hash Tree & L-tree
  19. void setTreeHeight(uint32_t adrs[8], uint32_t treeHeight);
  20. void setTreeIndex(uint32_t adrs[8], uint32_t treeIndex);