ssn-installer/src/decrypt.c

7 lines
169 B
C
Raw Normal View History

2018-07-17 14:05:22 +02:00
#include "decrypt.h"
/** Decrypts the given input in-place. The input buffer will be modified. */
void decrypt(unsigned char chunk[], unsigned long length) {
//...
}