-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaddress.cpp
More file actions
57 lines (47 loc) · 1.59 KB
/
address.cpp
File metadata and controls
57 lines (47 loc) · 1.59 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <stdint.h>
#include <string.h>
#include "api.h"
#include "internal.h"
/// \file address.cpp
/// \brief This contains the accessor functions for the addr_t fields
// at least, the ones that were complicated enough not to inline
namespace slh_dsa {
//
// Specify which Merkle tree within the level (the "tree address") we're working on
void key::set_tree_addr(addr_t addr, uint64_t tree)
{
ull_to_bytes(&addr[offset_tree], 8, tree );
}
//
// Copy the layer and tree fields of the address structure. This is used
// when we're doing multiple types of hashes within the same Merkle tree
void key::copy_subtree_addr(addr_t out, const addr_t in)
{
memcpy( out, in, offset_tree+8 );
}
/* These functions are used for OTS addresses. */
//
// Specify which Merkle leaf we're working on; that is, which OTS keypair
// we're talking about.
void key::set_keypair_addr(addr_t addr, uint32_t keypair)
{
((unsigned char *)addr)[offset_kp_addr2] = keypair >> 8;
((unsigned char *)addr)[offset_kp_addr1] = keypair;
}
//
// Copy the layer, tree and keypair fields of the address structure. This is
// used when we're doing multiple things within the same OTS keypair
void key::copy_keypair_addr(addr_t out, const addr_t in)
{
memcpy( out, in, offset_tree+8 );
out[offset_kp_addr2] = in[offset_kp_addr2];
out[offset_kp_addr1] = in[offset_kp_addr1];
}
//
// Specify the distance from the left edge of the node in the Merkle/FORS tree
// (the tree index)
void key::set_tree_index(addr_t addr, uint32_t tree_index)
{
u32_to_bytes(&addr[offset_tree_index], tree_index );
}
} /* namespace slh_dsa */