📓 Add comment

This commit is contained in:
C-3PO 2018-07-17 15:05:57 +02:00
parent 26012652a6
commit d541b16d39
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -25,6 +25,18 @@ void getFileReader(unsigned char path[], unsigned long offset, unsigned long len
int main(int argc, unsigned char *argv[]) { int main(int argc, unsigned char *argv[]) {
printf("Hello World!\n"); printf("Hello World!\n");
//Initialise file reader
getFileReader("1234", 0, 10); getFileReader("1234", 0, 10);
//Skip header (30 bytes + additional length)
//Initialise decryption (pass decryption keys)
//Skip 12-byte encryption header
//Decompress file
//Optionally perform xdelta3
return 0; return 0;
} }