fix keys.h typo, began dat_net c/h

This commit is contained in:
2025-10-16 14:08:14 -04:00
parent a1da7deba4
commit f0f91540be
4 changed files with 42 additions and 3 deletions

View File

@@ -5,12 +5,12 @@
#define SLEEP_PUB_KEY_BYTES 32
#define SLEEP_SECRET_KEY_BYTES 64
#define SLEEP_SIGNATURE_BYES 64
#define SLEEP_BLAKE2B_BYES 32
#define SLEEP_SIGNATURE_BYTES 64
#define SLEEP_BLAKE2B_BYTES 32
typedef struct {
uint8_t pubkey[SLEEP_PUB_KEY_BYTES];
uint8_t seckey[SLEEP_SECRET_KEY_BYES];
uint8_t seckey[SLEEP_SECRET_KEY_BYTES];
} sleep_keypair_t;