lightning 0.0.3

A Bitcoin Lightning implementation in Rust. Still super-early code-dump quality and is missing large chunks. See README in git repo for suggested projects if you want to contribute. Don't have to bother telling you not to use this for anything serious, because you'd have to finish building it to even try.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdint.h>
#include <stdlib.h>

uint32_t rust_crypto_util_fixed_time_eq_asm(uint8_t* lhsp, uint8_t* rhsp, size_t count) {
	if (count == 0) {
		return 1;
	}
	uint8_t result = 0;
	for (size_t i = 0; i < count; i++) {
		result |= (lhsp[i] ^ rhsp[i]);
	}
	return result;
}