summaryrefslogtreecommitdiff
path: root/app-crypt/hashcat
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-08-20 21:42:17 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-08-20 21:42:17 +0100
commit90a3be9d71a22834f9bc82c072f1b993f9a10e31 (patch)
tree7f86c1f37e857df29494ec91436ca76bed49441a /app-crypt/hashcat
parenta597364520b9291d0b2a23bb007ced022e821d95 (diff)
gentoo auto-resync : 20:08:2023 - 21:42:17
Diffstat (limited to 'app-crypt/hashcat')
-rw-r--r--app-crypt/hashcat/Manifest2
-rw-r--r--app-crypt/hashcat/files/hashcat-6.2.4-brainless.patch41
-rw-r--r--app-crypt/hashcat/files/hashcat-6.2.4-pocl-quoting-include.patch34
3 files changed, 0 insertions, 77 deletions
diff --git a/app-crypt/hashcat/Manifest b/app-crypt/hashcat/Manifest
index d04db9990672..a2cdd02de0a8 100644
--- a/app-crypt/hashcat/Manifest
+++ b/app-crypt/hashcat/Manifest
@@ -1,5 +1,3 @@
-AUX hashcat-6.2.4-brainless.patch 1040 BLAKE2B 0bcdb5fce7b22f95844c5fcef1c92ee0d78a10830a91991033d5476057e883408b595486dcc5d3fb3fad1c4d6b0c05f5e0a5c16f4404aee613a97203f88d8ab6 SHA512 a00d84c8611d43870c4d46be78454350e17471ad4d8d9ac98528b8527cde81bb23deed931c01d042511b98c8962554fbdc965e62555f640cb19f2196418f4f7a
-AUX hashcat-6.2.4-pocl-quoting-include.patch 1480 BLAKE2B 4999e878010c8083e0ba708adafc46ee744ca4127f8f2442ae1c659a1ca59525f0a66ffb55e845ffb0da897259d7206c53534fec4a58c6daa6bdc25e28493fe9 SHA512 ed64891dc00a546b07e32aa65a30ea30bbb0b6aeacf616e43f59b0c28dfafcdc54dce8e194fdf0805187dbf57c6c0a9655153823734d7e9537ab150b798b7205
DIST hashcat-6.2.6.tar.gz 14234640 BLAKE2B fbbebc0a35b920442d4e1fb5822a8b9867db62bcc2404fba514fe1f06f0aa859a116cbe204eed71d340ad826dcfffffadca6963e5eec875ae2fee59068968b61 SHA512 b5e4f40fb5ed0a47977243e1f95bf1deae0b04bd5ca26338395305c42573fe5b17557835f6f5d8b7402812e8eadda2b260d6b927ce99429fd1b87eb26f002f8a
EBUILD hashcat-6.2.6.ebuild 2732 BLAKE2B 2e48b80c34b0dc76621e0cf3dd9d1700dcf11c967e89707145f1faef70461d6ce73780fa40aacfc2fb87b22dca0b88e7b303df596168ee62349b5a246839e8aa SHA512 828f723c75c7752ff05b127ab35b89be060d9777b4928c7494ac90e4b60acf142809e3aefbbc468384fef34b8ce52d14a1961c3e42840e3bbae1a20dd724abc7
EBUILD hashcat-9999.ebuild 2732 BLAKE2B 911bcb18ca12ab0543df78c68c5260fb48afd048c6c75705ee1b0fdca33bb4ddb0ce69771d8b6a69516b6b7a4880641168b3450761cdbc9c3e15c5ef9dee3884 SHA512 3901ac0fa5d87bff2da42923a4a5d4250d077d92945cab1c2354bbd7040a9091740fc09d8ba76accaf9edf868d0fddce796a16d4bbae5483ae00178190f3690a
diff --git a/app-crypt/hashcat/files/hashcat-6.2.4-brainless.patch b/app-crypt/hashcat/files/hashcat-6.2.4-brainless.patch
deleted file mode 100644
index 66d85d45c0b2..000000000000
--- a/app-crypt/hashcat/files/hashcat-6.2.4-brainless.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-https://github.com/hashcat/hashcat/pull/2961#event-5251978340
-From 0d5aed883b45cf3c218cb71916b08d56ae3d25a3 Mon Sep 17 00:00:00 2001
-From: Miezhiko <Miezhiko@gmail.com>
-Date: Thu, 2 Sep 2021 17:52:27 +0400
-Subject: [PATCH] Fix compilation without brain
-
-Signed-off-by: Miezhiko <Miezhiko@gmail.com>
----
- src/hashcat.c | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/src/hashcat.c b/src/hashcat.c
-index 163d7408d..bf936ccc0 100644
---- a/src/hashcat.c
-+++ b/src/hashcat.c
-@@ -922,7 +922,10 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx)
-
- // clean up
-
-+ #ifdef WITH_BRAIN
- brain_ctx_destroy (hashcat_ctx);
-+ #endif
-+
- bitmap_ctx_destroy (hashcat_ctx);
- combinator_ctx_destroy (hashcat_ctx);
- cpt_ctx_destroy (hashcat_ctx);
-@@ -1090,13 +1093,13 @@ int hashcat_session_init (hashcat_ctx_t *hashcat_ctx, const char *install_folder
- }
- }
- #endif
-- #endif
-
- /**
- * brain
- */
-
- if (brain_ctx_init (hashcat_ctx) == -1) return -1;
-+ #endif
-
- /**
- * logfile
diff --git a/app-crypt/hashcat/files/hashcat-6.2.4-pocl-quoting-include.patch b/app-crypt/hashcat/files/hashcat-6.2.4-pocl-quoting-include.patch
deleted file mode 100644
index c2c834f712e6..000000000000
--- a/app-crypt/hashcat/files/hashcat-6.2.4-pocl-quoting-include.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Fixes POCL include error.
-
-https://github.com/hashcat/hashcat/commit/8c14fd85eaf98f4cda3acf8f917edae696a3bb71
-https://github.com/hashcat/hashcat/issues/2950
-
-From: Jens Steube <jens.steube@gmail.com>
-Date: Sun, 5 Sep 2021 10:55:59 +0200
-Subject: [PATCH] POCL: Added a workaround for an issue in POCL that uses a
- quote character as part of the path itself given to a path for the -I option
-
---- a/src/backend.c
-+++ b/src/backend.c
-@@ -11365,7 +11365,19 @@ int backend_session_begin (hashcat_ctx_t *hashcat_ctx)
- }
- else
- {
-- build_options_len += snprintf (build_options_buf + build_options_len, build_options_sz - build_options_len, "-D KERNEL_STATIC -I OpenCL -I \"%s\" ", folder_config->cpath_real);
-+ if (device_param->opencl_platform_vendor_id == VENDOR_ID_POCL)
-+ {
-+ // POCL doesn't like quotes in the include path, see:
-+ // https://github.com/hashcat/hashcat/issues/2950
-+ // Maybe related:
-+ // https://github.com/pocl/pocl/issues/962
-+
-+ build_options_len += snprintf (build_options_buf + build_options_len, build_options_sz - build_options_len, "-D KERNEL_STATIC -I OpenCL -I %s ", folder_config->cpath_real);
-+ }
-+ else
-+ {
-+ build_options_len += snprintf (build_options_buf + build_options_len, build_options_sz - build_options_len, "-D KERNEL_STATIC -I OpenCL -I \"%s\" ", folder_config->cpath_real);
-+ }
- }
-
- /* currently disabled, hangs NEO drivers since 20.09.
-