Skip to content

Commit

Permalink
Update XTEA.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jpiechowka committed Apr 12, 2016
1 parent 73c7258 commit e1549b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XTEA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ void decipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4])
v[0] = v0; v[1] = v1;
}

void xtea(char filePath[], bool boolEncrypt) {
void xtea(char filePath[], bool boolEncrypt)
{
//Open file
fstream file(filePath, ios::in | ios::out | ios::binary);
cout << endl << "Opening file: " << filePath << endl;
Expand Down

0 comments on commit e1549b7

Please sign in to comment.