Skip to content

Commit e1549b7

Browse files
committed
Update XTEA.cpp
1 parent 73c7258 commit e1549b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/XTEA.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ void decipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4])
3737
v[0] = v0; v[1] = v1;
3838
}
3939

40-
void xtea(char filePath[], bool boolEncrypt) {
41-
40+
void xtea(char filePath[], bool boolEncrypt)
41+
{
4242
//Open file
4343
fstream file(filePath, ios::in | ios::out | ios::binary);
4444
cout << endl << "Opening file: " << filePath << endl;

0 commit comments

Comments
 (0)