diff options
author | Ian Moffett <ian@osmora.org> | 2024-09-26 00:31:15 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-09-26 00:31:15 -0400 |
commit | b132db61e45603878944e2cd11ea9334838d274d (patch) | |
tree | 5f05adf47dda300bd08dc6eb3796e24011214b2b /ostp.d/net | |
parent | 1c630b1722da9a6c15e206f0405e36468f1a48f1 (diff) |
project: Use unsigned byte for data
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'ostp.d/net')
-rw-r--r-- | ostp.d/net/otd_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ostp.d/net/otd_auth.c b/ostp.d/net/otd_auth.c index 9784356..e16d7b2 100644 --- a/ostp.d/net/otd_auth.c +++ b/ostp.d/net/otd_auth.c @@ -35,7 +35,7 @@ #define KEY_BYTE_WIDTH 32 static void -log_pubkey(char pubkey[KEY_BYTE_WIDTH]) +log_pubkey(uint8_t pubkey[KEY_BYTE_WIDTH]) { for (size_t i = 0; i < KEY_BYTE_WIDTH; ++i) { printf("%02X ", pubkey[i] & 0xFF); |