Diff between 40511fa33d50d0f3efee5dbfafb4ac705f699147 and 5523fecc24a1b23310a17f826ce99025eefad6b5
Changed Files
| File | Additions | Deletions | Status |
| monitor/packet.c | +3 | -1 | modified |
Full Patch
diff --git a/monitor/packet.c b/monitor/packet.c
index 322bba6..ca824bf 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -1870,7 +1870,9 @@ static void print_randomizer_p256(const uint8_t *randomizer)
static void print_pk256(const char *label, const uint8_t *key)
{
- print_hex_field(label, key, 64);
+ print_field("%s:", label);
+ print_hex_field(" X", &key[0], 32);
+ print_hex_field(" Y", &key[32], 32);
}
static void print_dhkey(const uint8_t *dhkey)