SHA256
1
0
forked from pool/hashcat
Files
hashcat/system-libs.patch
Jan Engelhardt daa1da5d1e - Shorten %description
- Add python3-devel to Recommends: 
- Update to release 7.0.0
  * Full release notes at
    /usr/share/doc/packages/hashcat/docs/releases_notes_v7.0.0.md
  * Assimilation Bridge: Integrate external resources like CPUs,
    FPGAs, embedded interpreters, and more into the cracking
    pipeline.
  * Python Bridge Plugin: Rapidly implement hash-matching logic in
    Python. No recompilation needed, supports multithreading and
    rule engine by default.
  * Virtual Backend Devices: Internally partitions physical GPUs
    into multiple logical devices for better bridge integration and
    async workloads.
  * Hash-Mode Autodetection: Omit the -m flag and let Hashcat
    detect the hash-mode, or use --identify to list possibilities.
  * 58 new application-specific hash types, including Argon2,
    MetaMask, Microsoft Online Account, SNMPv3, GPG, OpenSSH, and
    LUKS2
  * 17 new generic hash constructions used in real-world web apps
    and protocols
  * 11 new primitives added to the crypto library, improving reuse
    and plugin development
  * 20 new tools to extract hashes from popular sources, including
    APFS, Virtualbox, BitLocker, and various wallet formats
  * Complete refactor of the autotuning engine for better device
    utilization
  * Major rewrite of memory management to eliminate previous 4GB
    allocation caps and enable full memory usage across devices

OBS-URL: https://build.opensuse.org/package/show/security/hashcat?expand=0&rev=28
2025-08-05 08:17:56 +00:00

65 lines
1.6 KiB
Diff

---
src/Makefile | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
Index: hashcat-7.0.0/src/Makefile
===================================================================
--- hashcat-7.0.0.orig/src/Makefile
+++ hashcat-7.0.0/src/Makefile
@@ -3,7 +3,7 @@
## License.....: MIT
##
-SHARED ?= 0
+SHARED ?= 1
DEBUG := 0
PRODUCTION := 1
PRODUCTION_VERSION := v7.0.0
@@ -11,9 +11,9 @@ ENABLE_CUBIN ?= 1
ENABLE_BRAIN ?= 1
ENABLE_UNRAR ?= 1
USE_SYSTEM_LZMA ?= 0
-USE_SYSTEM_ZLIB ?= 0
+USE_SYSTEM_ZLIB ?= 1
USE_SYSTEM_OPENCL ?= 0
-USE_SYSTEM_XXHASH ?= 0
+USE_SYSTEM_XXHASH ?= 1
## do not change, requires some hacks
USE_SYSTEM_UNRAR ?= 0
@@ -114,7 +114,7 @@ VERSION_PURE := $(shell echo
##
DESTDIR ?=
-PREFIX ?= /usr/local
+PREFIX ?= /usr
INSTALL_FOLDER ?= $(PREFIX)/bin
SHARED_ROOT_FOLDER ?= $(PREFIX)/share
@@ -187,7 +187,7 @@ endif # MSYS2
## Misc stuff
##
-COMPTIME := $(shell date +%s)
+COMPTIME := 0
##
## General compiler and linker options
@@ -195,6 +195,7 @@ COMPTIME := $(shell date
LFLAGS := $(LDFLAGS)
+CFLAGS += $(our_CFLAGS)
ifeq ($(PRODUCTION),0)
CFLAGS += -W
CFLAGS += -Wall
@@ -268,7 +269,7 @@ endif
ifeq ($(DEBUG),0)
CFLAGS += -O2
ifneq ($(UNAME),Darwin)
-LFLAGS += -s
+LFLAGS +=
endif
else
ifeq ($(DEBUG),1)