🎨 Rename variable
This commit is contained in:
parent
d6cb0831fb
commit
c2914426af
1 changed files with 6 additions and 6 deletions
|
@ -18,11 +18,11 @@ void initDecryptor(uint32_t key0, uint32_t key1, uint32_t key2) {
|
|||
/** Decrypts the given input in-place. The input buffer will be modified. */
|
||||
void decrypt(uint8_t* chunk, unsigned long length) {
|
||||
for (unsigned long i = 0; i < length; i += 1) {
|
||||
//uint8_t testChar = chunk[i];
|
||||
uint8_t testChar = *(chunk + i);
|
||||
testChar = testChar ^ decryptByte((uint16_t)((uint16_t)(decryptor.key2 & (uint16_t)0xFFFF) | (uint16_t)2));
|
||||
updateKeys(&(decryptor.key0), &(decryptor.key1), &(decryptor.key2), testChar);
|
||||
//chunk[i] = testChar;
|
||||
*(chunk + i) = testChar;
|
||||
//uint8_t curChar = chunk[i];
|
||||
uint8_t curChar = *(chunk + i);
|
||||
curChar = curChar ^ decryptByte((uint16_t)((uint16_t)(decryptor.key2 & (uint16_t)0xFFFF) | (uint16_t)2));
|
||||
updateKeys(&(decryptor.key0), &(decryptor.key1), &(decryptor.key2), curChar);
|
||||
//chunk[i] = curChar;
|
||||
*(chunk + i) = curChar;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue