diff options
| author | jakob <jakob@memeware.net> | 2017-01-13 20:54:39 -0500 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-01-13 20:54:39 -0500 |
| commit | d6a443127b6f8173aeab214942e0b6f31f7c4224 (patch) | |
| tree | 0a148b4b77019e559342aee9bd12923c98d6d90b /src/crypto.h | |
| parent | b51100b3330605a6c9bdb3e07e7f9981ff73f6ec (diff) | |
Fixed memory leaking issues and introduced a feature to list the contents of an archive.
Diffstat (limited to 'src/crypto.h')
| -rw-r--r-- | src/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto.h b/src/crypto.h index e82b934..f8d5d86 100644 --- a/src/crypto.h +++ b/src/crypto.h @@ -32,7 +32,7 @@ typedef struct { } key; /* Returns the encryption keys for a given game value. */ -key get_encryption_key(game current_game); +key get_encryption_key(game_type game); /* Decrypts the contents of a buffer according to a file key. */ void decrypt_buffer(Bytef *encrypted_buffer, uint64_t buffer_length, |