blob: c0b81dcae9bdb61b94c34ade875833c6d3be3a70 (
plain) (
blame)
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
|
// SPDX-License-Identifier: BSD-2-Clause
// SPDX-FileCopyrightText: Copyright (c) 2025 Vicky Williams
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu
#include "sha256.h"
unsigned char challenge[32];
char validate_hash(unsigned char *hash, unsigned char zero_bit_count) {
unsigned char q = zero_bit_count / 8;
unsigned char r = zero_bit_count % 8;
for (unsigned char i = 0; i < q; i++) {
if (hash[i] != 0) {
return 0;
}
}
if (r > 0) {
unsigned char mask = (unsigned char)(0xFF << (8 - r));
if (hash[q] & mask) {
return 0;
}
}
return 1;
}
unsigned char *get_challenge_ptr() {
return challenge;
}
unsigned long long solve(unsigned char difficulty) {
unsigned long long nonce;
SHA256_CTX context;
unsigned char hash[32];
nonce = 0;
while(1) {
sha256_init(&context);
sha256_update(&context, challenge, sizeof(challenge));
sha256_update(&context, (unsigned char*)(&nonce), sizeof(nonce));
sha256_final(&context, hash);
if(validate_hash(hash, difficulty)) {
break;
}
nonce++;
}
return nonce;
}
|