blob: 66bb4cc4d5fa7446f4bb78bd008ee87cec530a86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifdef WITH_XMSS
/* $OpenBSD: xmss_hash_address.h,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
hash_address.h version 20160722
Andreas Hülsing
Joost Rijneveld
Public domain.
*/
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
void setLayerADRS(uint32_t adrs[8], uint32_t layer);
void setTreeADRS(uint32_t adrs[8], uint64_t tree);
void setType(uint32_t adrs[8], uint32_t type);
void setKeyAndMask(uint32_t adrs[8], uint32_t keyAndMask);
// OTS
void setOTSADRS(uint32_t adrs[8], uint32_t ots);
void setChainADRS(uint32_t adrs[8], uint32_t chain);
void setHashADRS(uint32_t adrs[8], uint32_t hash);
// L-tree
void setLtreeADRS(uint32_t adrs[8], uint32_t ltree);
// Hash Tree & L-tree
void setTreeHeight(uint32_t adrs[8], uint32_t treeHeight);
void setTreeIndex(uint32_t adrs[8], uint32_t treeIndex);
#endif /* WITH_XMSS */
|