diff options
Diffstat (limited to 'src/SFileVerify.cpp')
-rw-r--r-- | src/SFileVerify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SFileVerify.cpp b/src/SFileVerify.cpp index 3748918..9bbbb6b 100644 --- a/src/SFileVerify.cpp +++ b/src/SFileVerify.cpp @@ -863,7 +863,7 @@ DWORD SSignFileFinish(TMPQArchive * ha) // Sign the hash
memset(WeakSignature, 0, sizeof(WeakSignature));
rsa_sign_hash_ex(Md5Digest, sizeof(Md5Digest), WeakSignature + 8, &signature_len, LTC_LTC_PKCS_1_V1_5, 0, 0, hash_idx, 0, &key);
- memrev(WeakSignature + 8, MPQ_WEAK_SIGNATURE_SIZE);
+ memrev(WeakSignature + 8, MPQ_WEAK_SIGNATURE_SIZE);
rsa_free(&key);
// Write the signature to the MPQ. Don't use SFile* functions, but write the hash directly
|