mirror of
https://github.com/hashcat/hashcat
synced 2025-04-10 01:02:06 +02:00
- Fixed a bug related to --restore if the User
- Updated readme, we actually need catalyst 15.7 (for the binary package) because of OpenCL 2.0
This commit is contained in:
parent
d7af7dbad1
commit
c460b554d0
@ -5,6 +5,15 @@ File.: Host
|
|||||||
Desc.: Implemented a new feature that allows to quit at next restore point update (and disable it)
|
Desc.: Implemented a new feature that allows to quit at next restore point update (and disable it)
|
||||||
Issue: 10
|
Issue: 10
|
||||||
|
|
||||||
|
Type.: Bug
|
||||||
|
File.: Host
|
||||||
|
Desc.: Fixed a bug in combination of --restore and a user immediately aborting the session after restart
|
||||||
|
Trac.: 684
|
||||||
|
|
||||||
|
Type.: Change
|
||||||
|
File.: Docs
|
||||||
|
Desc.: Updated docs/readme.txt -- Starting with v2.01 OpenCL 2.00 is required; we need Catalyst 15.7 or higher
|
||||||
|
|
||||||
* changes v2.00 -> v2.01:
|
* changes v2.00 -> v2.01:
|
||||||
|
|
||||||
Type.: Bug
|
Type.: Bug
|
||||||
|
@ -2,7 +2,7 @@ oclHashcat v2.00
|
|||||||
================
|
================
|
||||||
|
|
||||||
NV users require ForceWare 346.59 or later
|
NV users require ForceWare 346.59 or later
|
||||||
AMD users require Catalyst 14.9 or later
|
AMD users require Catalyst 15.7 or later
|
||||||
|
|
||||||
##
|
##
|
||||||
## Features
|
## Features
|
||||||
|
@ -8747,6 +8747,14 @@ uint64_t get_lowest_words_done ()
|
|||||||
if (words_done < words_cur) words_cur = words_done;
|
if (words_done < words_cur) words_cur = words_done;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// It's possible that a GPU's workload isn't finished right after a restore-case.
|
||||||
|
// In that case, this function would return 0 and overwrite the real restore point
|
||||||
|
// There's also data.words_cur which is set to rd->words_cur but it changes while
|
||||||
|
// the attack is running therefore we should stick to rd->words_cur.
|
||||||
|
// Note that -s influences rd->words_cur we should keep a close look on that.
|
||||||
|
|
||||||
|
if (words_cur < data.rd->words_cur) words_cur = data.rd->words_cur;
|
||||||
|
|
||||||
return words_cur;
|
return words_cur;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user