You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "prios_key_cracker.c" module, you are using the "for (uint64_t i=0; i<0xffffffffffffffff; i++)" loop. However, the key is 32bit:
uint32_t preparePRIOSKey(const uint8_t * const bytes) {
uint32_t key1 = read_uint32_be(bytes, 0);
uint32_t key2 = read_uint32_be(bytes, 4);
uint32_t key = key1 ^ key2;
return key;
}
The text was updated successfully, but these errors were encountered:
In the "prios_key_cracker.c" module, you are using the "for (uint64_t i=0; i<0xffffffffffffffff; i++)" loop. However, the key is 32bit:
uint32_t preparePRIOSKey(const uint8_t * const bytes) {
uint32_t key1 = read_uint32_be(bytes, 0);
uint32_t key2 = read_uint32_be(bytes, 4);
uint32_t key = key1 ^ key2;
return key;
}
The text was updated successfully, but these errors were encountered: