Fix formatting of comments in exp.c

This commit is contained in:
Jishan arab 2026-05-09 22:57:19 +05:30 committed by GitHub
parent 07995be9d9
commit 5360f6b33f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

1
exp.c
View file

@ -445,6 +445,7 @@ struct rxkad_challenge {
/* Attacker-chosen 8-byte session key used for the rxkad token. /* Attacker-chosen 8-byte session key used for the rxkad token.
* Mutable because the LPE brute-force iterates over keys looking for * Mutable because the LPE brute-force iterates over keys looking for
* one that decrypts the file's UID field to a "0:" prefix. */ * one that decrypts the file's UID field to a "0:" prefix. */
static uint8_t SESSION_KEY[8] = { static uint8_t SESSION_KEY[8] = {
0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08
}; };