From 175931575cdd9721320eb85b3a62a390a8976cfa Mon Sep 17 00:00:00 2001 From: jsteube Date: Mon, 14 Aug 2017 12:10:42 +0200 Subject: [PATCH] Fixed the version number used in the restore file header Fixes https://github.com/hashcat/hashcat/issues/1320 --- docs/changes.txt | 1 + include/restore.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index eb2b71ffc..fba0e720a 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -22,6 +22,7 @@ - Fixed a parser error for mode -m 9820 = MS Office <= 2003 $3, SHA1 + RC4, collider #2 - Fixed a problem with changed current working directory, for instance by using --restore together with --remove - Fixed a memory problem that occured when the OpenCL folder was not found and e.g. the shared and session folder were the same +- Fixed the version number used in the restore file header ## ## Improvements diff --git a/include/restore.h b/include/restore.h index fec8e269a..2569ec6a3 100644 --- a/include/restore.h +++ b/include/restore.h @@ -16,7 +16,7 @@ #endif // _WIN #define RESTORE_VERSION_MIN 340 -#define RESTORE_VERSION_CUR 350 +#define RESTORE_VERSION_CUR 360 int cycle_restore (hashcat_ctx_t *hashcat_ctx);