1
mirror of https://github.com/hashcat/hashcat synced 2024-11-24 14:27:14 +01:00

Fix error message in backend.c and add missing new hash-mode entries in changes.txt

This commit is contained in:
jsteube 2022-11-18 09:47:17 +00:00
parent c35d8ecfd4
commit 9a52ee6d01
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,8 @@
- Added hash-mode: ENCsecurity Datavault (MD5/keychain)
- Added hash-mode: DANE RFC7929/RFC8162 SHA2-256
- Added hash-mode: Dahua NVR/DVR/HVR (md5($salt1.strtoupper(md5($salt2.$pass))))
- Added hash-mode: GPG (AES-128/AES-256 (SHA-1($pass)))
- Added hash-mode: GPG (AES-128/AES-256 (SHA-512($pass)))
- Added hash-mode: md5(md5($salt).md5(md5($pass)))
##

View File

@ -14703,7 +14703,7 @@ int backend_session_begin (hashcat_ctx_t *hashcat_ctx)
if (kernel_accel_min > kernel_accel_max)
{
event_log_error (hashcat_ctx, "* Device #%u: Too many compute units to keep minimum kernel accel limit.", device_id + 1);
event_log_error (hashcat_ctx, " Retry with lower --backend-kernel-threads value.");
event_log_error (hashcat_ctx, " Retry with lower --kernel-threads value.");
backend_kernel_accel_warnings++;