-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblockchain_bak.c
76 lines (63 loc) · 2.47 KB
/
blockchain_bak.c
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*********************************************************************
Homework 5
CS 110: Computer Architecture, Spring 2021
ShanghaiTech University
* Last Modified: 03/28/2021
*********************************************************************/
#include "blockchain.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
void blockchain_node_init(blk_t *node, uint32_t index, uint32_t timestamp,
unsigned char prev_hash[32], unsigned char *data,
size_t data_size) {
if (!node || !data || !prev_hash)
return;
node->header.index = index;
node->header.timestamp = timestamp;
node->header.nonce = -1;
memset(node->header.data, 0, sizeof(unsigned char) * 256);
memcpy(node->header.prev_hash, prev_hash, HASH_BLOCK_SIZE);
memcpy(node->header.data, data,
sizeof(unsigned char) * ((data_size < 256) ? data_size : 256));
}
void blockchain_node_hash(blk_t *node, unsigned char hash_buf[HASH_BLOCK_SIZE],
hash_func func) {
if (node)
func((unsigned char *)node, sizeof(blkh_t), (unsigned char *)hash_buf);
}
BOOL blockchain_node_verify(blk_t *node, blk_t *prev_node, hash_func func) {
unsigned char hash_buf[HASH_BLOCK_SIZE];
if (!node || !prev_node)
return False;
blockchain_node_hash(node, hash_buf, func);
if (memcmp(node->hash, hash_buf, sizeof(unsigned char) * HASH_BLOCK_SIZE))
return False;
blockchain_node_hash(prev_node, hash_buf, func);
if (memcmp(node->header.prev_hash, hash_buf,
sizeof(unsigned char) * HASH_BLOCK_SIZE))
return False;
return True;
}
/* The sequiental implementation of mining implemented for you. */
void blockchain_node_mine(blk_t *node, unsigned char hash_buf[HASH_BLOCK_SIZE],
size_t diff, hash_func func) {
unsigned char one_diff[HASH_BLOCK_SIZE];
size_t diff_q, diff_m;
diff_q = diff / 8;
diff_m = diff % 8;
memset(one_diff, 0xFF, sizeof(unsigned char) * HASH_BLOCK_SIZE);
memset(one_diff, 0, sizeof(unsigned char) * diff_q);
one_diff[diff_q] = ((uint8_t)0xFF) >> diff_m;
while (True) {
printf("%s\n", hash_buf);
blockchain_node_hash(node, hash_buf, func);
if ((!memcmp(hash_buf, one_diff, sizeof(unsigned char) * diff_q)) &&
memcmp(&hash_buf[diff_q], &one_diff[diff_q],
sizeof(unsigned char) * (HASH_BLOCK_SIZE - diff_q)) <= 0) {
memcpy(node->hash, hash_buf, sizeof(unsigned char) * HASH_BLOCK_SIZE);
break;
}
node->header.nonce++;
}
}