Change admin password and encryption key

This commit is contained in:
2019-10-15 20:17:51 +02:00
parent 8875e75439
commit 452a07d593
3 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ void login()
encrypted_password[i] = password[i];
}
AES::encrypt_ecb(encrypted_password, key);
uint8_t rootpw[16] = {0xe3, 0x07, 0x2e, 0x9f, 0x5b, 0xe8, 0xed, 0xd6, 0x02, 0xab, 0x89, 0xb8, 0xeb, 0x49, 0xcc, 0x56};
uint8_t rootpw[16] = {0x95, 0x22, 0x28, 0xf3, 0x90, 0xa6, 0x0b, 0xd2, 0x5d, 0x61, 0xdd, 0x1e, 0xdf, 0x39, 0x44, 0x7b};
for (int i = 0;i < 16;i++)
{
if (encrypted_password[i] != rootpw[i])