6 lines
169 B
C
6 lines
169 B
C
#include "decrypt.h"
|
|
|
|
/** Decrypts the given input in-place. The input buffer will be modified. */
|
|
void decrypt(unsigned char chunk[], unsigned long length) {
|
|
//...
|
|
}
|