jsteube
35e1ee6612
Functions append_0x02() no longer required after rewrite of -m 8800
2017-07-03 11:31:05 +02:00
jsteube
ccc9e46508
Vectorized Android FDE <= 4.3 kernel and added support for passwords up to length 256
2017-07-03 11:29:32 +02:00
jsteube
cbeb9c6e0c
Remove unused functions from -m 2500
2017-07-03 11:22:50 +02:00
jsteube
d806aab2c3
Remove some unused functions
2017-07-03 11:18:40 +02:00
jsteube
b03382b334
Get rid of old truncate_block()
2017-07-03 11:07:37 +02:00
jsteube
64704f36c2
Add pure kernel for -m 6300
2017-07-03 10:50:27 +02:00
jsteube
34c85a659d
Refactor -m 500 and -m 1600 to use new truncate_block() functions
2017-07-03 10:47:04 +02:00
jsteube
a22da36a00
Add different code generators for truncate_block(), add results to inc_common.cl and make use of them in m01800-pure.cl
2017-07-03 10:41:09 +02:00
jsteube
b9b2112b64
Add pure kernel for -m 1800
2017-07-02 23:27:54 +02:00
jsteube
8e1759650b
Add -L support for -m 1700 in combination with -a 3
2017-07-02 19:05:38 +02:00
jsteube
58a66cf31d
Fix function declaration of switch_buffer_by_offset_8x4_carry_be_S()
2017-07-02 18:39:55 +02:00
jsteube
a009f239d5
Backport generated scalar code to vector code
2017-07-02 18:26:44 +02:00
jsteube
fbfe81a0a1
Replace code in switch_buffer_by_offset_carry_be_S() with code generated with code generators
2017-07-02 18:15:13 +02:00
jsteube
b07b73f525
Add switch_buffer_by_offset_8x4_be_S() to inc_common.cl
2017-07-02 17:36:15 +02:00
jsteube
6feb0a1630
Rename switch_buffer_by_offset_64x1_le_S() to switch_buffer_by_offset_1x64_le_S()
2017-07-02 15:29:04 +02:00
jsteube
2a50c7ba61
Remove debugging line
2017-07-02 15:21:58 +02:00
jsteube
cd5223eb2f
Replace code in switch_buffer_by_offset_be_S() with code generated with code generators
2017-07-02 15:18:44 +02:00
jsteube
521ece537c
Replace code in switch_buffer_by_offset_64x1_le_S() in amp_a1.cl with generated code from code generators
2017-07-02 15:08:01 +02:00
jsteube
62d695d572
Rename switch_buffer_by_offset_le_S() to switch_buffer_by_offset_64x1_le_S() in amp_a1.cl
2017-07-02 15:05:55 +02:00
jsteube
48ce6cb71d
Add append_0x80_8x4_S() and replace code in switch_buffer_by_offset_le_S() with generated code from code generators
2017-07-02 15:05:08 +02:00
jsteube
f5dca399ad
Add -L support for -m 1600
2017-07-01 18:40:29 +02:00
jsteube
b0d5995689
Backport changes from inc_hash_md5.cl to inc_hash_md4.cl
2017-07-01 18:09:05 +02:00
Jens Steube
56dc8ae359
Add two functions md5_update_global_utf16le_swap() and md5_update_global_swap() for later use
2017-07-01 15:06:17 +02:00
jsteube
165380c454
Simplify WPA/WPA2 cracking kernel
2017-07-01 14:41:53 +02:00
jsteube
52c1e15f3f
Move kernel-code for -L to standalone files with -pure suffix
2017-07-01 13:02:07 +02:00
jsteube
194af74e91
Add support for maximum bcrypt password length
2017-07-01 11:04:59 +02:00
jsteube
7914e075f6
This patch is an example of how to modify a fast -a 3 kernel to support password lengths up to 256
2017-06-30 17:21:30 +02:00
jsteube
cefd2ddb94
Tune AMD unroll settings for AMD-GPU-PRO 17.40
2017-06-29 15:50:46 +02:00
jsteube
f7a8e7c54b
Multiple changes:
...
* Added more preparations to support to crack passwords and salts up to length 256
* Added option --length-limit-disable to disable optimization based on password- and salt-length
* Added option --self-test-disable to disable self-test functionality on startup
2017-06-29 12:19:05 +02:00
jsteube
c918173fcf
Get rid of comb_t which can be safely replace with pw_t now
2017-06-25 00:56:25 +02:00
jsteube
045ac7d8e7
Modify amp_a1 to work with password length 256
2017-06-25 00:42:53 +02:00
Jens Steube
c2a770631f
Merge pull request #1284 from neheb/master
...
Fix signed overflow warnings
2017-06-24 10:51:42 +02:00
Rosen Penev
2f3171fd98
Fix signed overflow warnings
2017-06-23 21:44:50 -07:00
jsteube
c59432a760
Add hcstat2 support to enable masks of length up to 256, also adds a filetype header
2017-06-23 12:13:51 +02:00
jsteube
120cf1d1ba
Removed some unused functions, added -m 500 kernel with length 256 support but not activated because too slow
2017-06-23 09:24:50 +02:00
jsteube
71d4926afa
Converted -m 400 to password length 256 support
...
Something weird happend here, read on!
I've expected some performance drop because this algorithm is using the password data itself inside the iteration loop.
That is different to PBKDF2, which I've converted in mode 2100 before and which did not show any performance as expected.
So after I've finished converting this kernel and testing everything works using the unit test, I did some benchmarks to see how much the
performance drop is.
On my 750ti, the speed dropped (minimal) from 981kH/s -> 948kH/s, that's mostly because of the SIMD support i had to drop.
If I'd turn off the SIMD support in the original, the drop would be even less, that us 967kH/s -> 948kH/s which is a bit of a more reasable
comparison in case we just want to rate the drop that is actually caused by the code change itself.
The drop was acceptable for me, so I've decided to check on my GTX1080.Now the weird thing: The performance increased from 6619kH/s to
7134kH/s!!
When I gave it a second thought, it turned out that:
1. The GTX1080 is a scalar GPU so it wont suffer from the drop of the SIMD code as the 750ti did
2. There's a change in how the global data (password) is read into the registers, it reads only that amount of data it actually needs by using
the pw_len information
3. I've added a barrier for CLK_GLOBAL_MEM_FENCE as it turned out to increase the performance in the 750ti
Note that this kernel is now branched into password length < 40 and larger.
There's a large drop on performance where SIMD is really important, for example CPU.
We could workaround this issue by sticking to SIMD inside the length < 40 branch, but I don't know yet how this can be done efficiently.
2017-06-22 13:49:15 +02:00
Jens Steube
0787b91327
Merge branch 'master' of https://github.com/hashcat/hashcat
2017-06-22 10:50:20 +02:00
Jens Steube
45b14ebf1c
While not required now, it's better to use scalar functions in amplifier kernel in case it get's changed in the future
2017-06-22 10:28:35 +02:00
jsteube
cea78024bf
Fix -m 2100 cracking if (password length & 31) == 0
2017-06-21 16:21:12 +02:00
jsteube
ad242c2f12
Working example of generic salt up to length 256 for mode 2100
2017-06-20 17:17:13 +02:00
jsteube
2c92465036
Add HMAC functionality to inc_hash_md4.cl and make DCC2 use it, resulting in support for longer domain names
2017-06-19 16:42:21 +02:00
jsteube
4174f06008
PoC using a length-independant MD4 hash processing in -m 2100
2017-06-18 23:31:40 +02:00
jsteube
a673aee037
Very hot commit, continue reading here:
...
This is a test commit using buffers large enough to handle both passwords and salts up to length 256.
It requires changes to the kernel code, which is not included in here.
It also requires some of the host code to be modified. Before we're going to modify kernel code to support the larger lengths I want to be
sure of:
1. Host code modification is ok (no overflows or underflows)
2. Passwords and Salts are printed correctly to status, outfile, show, left, etc.
3. Performance does not change (or only very minimal)
This is not a patch that supports actual cracking both passwords and salts up to length 256, but it can not fail anyway.
If if it does, there's no reason to continue to add support for both passwords and salts up to length 256.
2017-06-17 17:57:30 +02:00
jsteube
c9caca2b0c
Increase max password length for DCC2 to 32
2017-06-16 19:28:55 +02:00
Jens Steube
bd01228ad5
Get rid of reqd_work_group_size(), no longer needed
2017-06-16 13:33:00 +02:00
jsteube
8a3ed7fe75
Small WPA improvement, do not check the same candidate twice for LE and BE
2017-06-16 11:33:49 +02:00
jsteube
cf57365e7c
Check hashes_shown[] whenever calling mark_hash directly.
...
Not really needed right now (because those algorithms to have a single digest per salt), but this can change in the future
2017-06-16 10:48:10 +02:00
jsteube
4b2d9f0f29
Fix for https://github.com/hashcat/hashcat/issues/1276
2017-06-16 10:26:15 +02:00
jsteube
e9c010115d
Fix some spacing
2017-06-16 10:25:36 +02:00
Jens Steube
e87fb31d3f
WPA cracking: Improved nonce-error-corrections mode to use a both positive and negative corrections
2017-06-12 09:59:15 +02:00
Jens Steube
7e5b8d3f25
Added hash-mode 15500 = JKS Java Key Store Private Keys (SHA1)
2017-06-09 09:56:06 +02:00
jsteube
b8ad89c529
Rename function and variables containing 'unicode' to 'utf16le' because that's what's meant actually
2017-06-05 12:15:28 +02:00
Royce Williams
3fc185a66b
tidy changes.txt and name normalizations
2017-06-04 13:54:41 -08:00
Jens Steube
542f73eb17
Move luks_tmp_t to correct position in inc_types.h
2017-06-04 21:52:35 +02:00
Jens Steube
9a1951d61c
synchronize host and opencl types
2017-06-04 21:51:19 +02:00
Jens Steube
ae5fdba20f
Add make_unicode and undo_unicode BE version
2017-06-04 21:16:41 +02:00
Jens Steube
b23ab71d5c
- Added hash-mode 15600 = Ethereum Wallet, PBKDF2-HMAC-SHA256
...
- Added hash-mode 15700 = Ethereum Wallet, PBKDF2-SCRYPT
Resolves https://github.com/hashcat/hashcat/issues/1227
Resolves https://github.com/hashcat/hashcat/issues/1228
2017-06-03 23:23:03 +02:00
DoZ10
6ced398c3c
Addressed comments and added 15400 to benchmark.c and tab_completion
2017-05-17 07:35:56 -04:00
DoZ10
5683df2e17
Fixed conflicts
2017-05-16 20:36:55 -04:00
DoZ10
8b6120243d
Applied performance changes and fixed multi-mode bad implementation
2017-05-16 19:59:46 -04:00
DoZ10
f31f057113
Fixed minor error in offset calculation.
2017-05-15 22:49:44 -04:00
DoZ10
8dfd1bf066
Final. Implemented offset parameter to reach next keystream in kernels. Tested all kernels with scalar and vector modes
2017-05-15 18:34:34 -04:00
DoZ10
cfc3fa64c0
Implemented offset parameter to reach full ks block of 64 bytes
2017-05-15 08:47:40 -04:00
Fist0urs
a78dce94db
All remarks treated:
...
1) done + got rid of all u8 datatypes in shared struct
2) cf. previous
3) necessary as this is computed in _init then used in _comp
4) done
5) done
6) done => switch to 16
7) done
2017-05-14 19:45:35 +02:00
DoZ10
5ab5e6c7b6
Added salt section comment in kernels
2017-05-14 07:17:51 -04:00
DoZ10
9dee1d274d
Removed plain_length parameter and copied esalt buffer to salt ofr sorting mechanism.
2017-05-14 07:14:57 -04:00
DoZ10
0d3b5393ef
Swapped mode 670 -> 15400
2017-05-14 06:52:14 -04:00
Fist0urs
7ff09c6710
Preparing PR
2017-05-09 20:14:07 +02:00
DoZ10
c50e8bc486
Fixed position parameters. Tested all kernels. Ok.
2017-05-07 14:02:00 -04:00
DoZ10
2fd31ed89f
Completed kernel a3
2017-05-06 21:18:15 -04:00
DoZ10
dd1deb8ed3
Completed kernel a1
2017-05-06 21:12:53 -04:00
DoZ10
8511d9f047
Completed kernel a0.
2017-05-06 21:03:14 -04:00
DoZ10
3c67e0054c
Implemented Perl test and fixed issues. Now have a working base.
2017-05-06 20:40:10 -04:00
DoZ10
cd9dc989ce
Implemented Chacha20 crypto.
2017-05-06 14:24:50 -04:00
Fist0urs
40bbb0023c
Merge branch 'master' of https://github.com/hashcat/hashcat into DPAPImk
2017-05-06 17:00:17 +02:00
Fist0urs
d537712f27
Both DPAPImk v1 and v2 work for single hash, still a bug on multi-hash
...
Remaining this bug + tests.pl before PR
2017-05-06 16:55:36 +02:00
DoZ10
f6cd42352d
CPU parsing mostly done. Kernel showing good values.
2017-05-05 09:02:18 -04:00
DoZ10
152f0b5152
Init work on Chacha20
2017-05-04 22:34:52 -04:00
Jens Steube
b924901bb0
Merge pull request #1226 from DoZ10/master
...
Blake2b raw hash implementation
2017-05-03 16:38:03 +02:00
Fist0urs
29d331ee17
hmac-sha1 + SID almost working, padding problem
2017-05-02 23:56:00 +02:00
DoZ10
dcd8306b6f
Fixed naming convention for kernel blake2_t type
2017-05-01 20:12:20 -04:00
DoZ10
ee558c625d
Copied esalt buffer into kernel in the outer loop
2017-05-01 17:28:10 -04:00
DoZ10
8aa389b286
Fixed coding style convention for for() loops
2017-05-01 16:47:54 -04:00
Fist0urs
014278ab0e
Working:
...
- MD4/sha1
- hmac-sha1
- pbkdf2-hmac-sha1
- pbkdf2-hmac-sha512
Remaining:
- handling of long salt (SID)
- (AES256/DES3) + the end
2017-05-01 22:21:54 +02:00
DoZ10
22b9f80531
Inserted blake2b_sigma into kernel for perf gain. Standardized naming convention to blake2b_transform()
2017-05-01 16:19:20 -04:00
DoZ10
f0f96140b2
Fixed Attack modes 1 & 3
2017-04-30 21:10:54 -04:00
DoZ10
87e0281237
Moved init params in CPU (interface.c). Fixed vector-type problem in kernel a0.
2017-04-30 20:34:01 -04:00
Fist0urs
73d48dcd26
Initial commit, new format DPAPImk, works till hmac-sha1
2017-05-01 00:48:09 +02:00
mhasbini
5734741392
Add support for rule: eX
2017-04-30 16:23:39 +03:00
DoZ10
e71c68e0af
Fixed endianness to remove unecessary kernel swaps ops
2017-04-29 22:10:06 -04:00
Jens Steube
0fcf51dee3
Fixed a missing type specifier in a function declaration of the RACF kernel
2017-04-27 17:56:38 +02:00
DoZ10
c1f8204b06
Prepared transform routine
2017-04-27 01:26:23 -04:00
DoZ10
0e018c717d
Unrolled for() loops and removed S & P structs
2017-04-26 21:17:29 -04:00
DoZ10
76e3c0618e
Fixed for() loops coding style
2017-04-26 16:15:50 -04:00
DoZ10
903e716b9a
Swapped to outlen and tested. Okay. Still having problems with VECT_SIZE > 1
2017-04-25 18:28:40 -04:00
DoZ10
58c1f46b19
Merge and conflict resolve.
2017-04-24 21:47:35 -04:00
DoZ10
10629190e3
Now compiles for test.sh -m 600 -a 0 -V1 and -V2, but does not resolve on V2.
2017-04-23 20:32:34 -04:00
DoZ10
de477580a0
Code Cleanup and short doc additions
2017-04-22 21:50:22 -04:00
DoZ10
1386d0eecc
Added kernel m00600_a1.cl
2017-04-22 10:44:38 -04:00
DoZ10
bb61408e89
Added kernel m00600_a0
2017-04-22 09:51:39 -04:00
DoZ10
60afdc2a30
Added function m04 in attack mode 3
2017-04-22 08:32:05 -04:00
DoZ10
72724ccba4
Removed rotr64_w() function.
2017-04-21 21:08:54 -04:00
DoZ10
b61d74255b
Removed load64() and load64_reverse() functions.
2017-04-21 20:52:34 -04:00
DoZ10
ad305308bb
Remove useless loop.
2017-04-20 19:32:54 -04:00
DoZ10
5689892e46
Removed useless spaces.
2017-04-20 19:30:04 -04:00
DoZ10
976f50a56b
Code cleanup.
2017-04-20 19:24:28 -04:00
DoZ10
3ce9597685
Renamed load64_inv -> load64_reverse
2017-04-20 19:21:47 -04:00
DoZ10
afdef5ce1c
fix: Kernel m00600_a3.cl function s04.
2017-04-19 13:27:28 -04:00
Jens Steube
a93a143d1e
Use scalar swap32() version for scalar variable
2017-04-17 17:46:27 +02:00
DoZ10
d455c18d4b
saved.
2017-04-16 11:51:59 -04:00
DoZ10
c3b95db072
rm: cleanup files.
2017-04-16 11:33:13 -04:00
DoZ10
d5ca5d59db
add: lots of things....
2017-04-16 10:07:12 -04:00
DoZ10
69dad31a29
fix: changed -m 6200 -> 600
2017-04-13 20:45:48 -04:00
DoZ10
abb0f84985
fix: m number in cl file.
2017-04-13 17:37:17 -04:00
DoZ10
bf45f87d39
random work...
2017-04-13 17:06:48 -04:00
DoZ10
4e9bb8b093
init
2017-04-13 08:38:59 -04:00
jsteube
26949a4fce
WPA cracking: Improved nonce-error-corrections mode to fix corrupt nonce generated on Big-Endian devices
...
WPA cracking: Reduced --nonce-error-corrections default from 16 to 8 to compensate speed drop caused due to Big-Endian fixes
Fixes https://github.com/hashcat/hashcat/issues/1221
2017-04-10 10:11:32 +02:00
jsteube
d1b2fa0b31
Added hash-mode 15100 = Juniper/NetBSD sha1crypt
2017-03-23 16:44:32 +01:00
jsteube
2bc65c2c4d
A bit a different _comp kernel iteration for WPA which can have lots of handshakes
2017-03-10 19:54:00 +01:00
jsteube
bea0e52cdb
Remove unused variable
2017-03-09 10:17:34 +01:00
jsteube
c04dd5c8b1
WPA cracking: Added support for WPA/WPA2 handshake AP nonce automatic error correction
...
WPA cracking: Added parameter --nonce-error-corrections to configure range of error correction
2017-03-07 14:41:58 +01:00
jsteube
33a043ec63
Refactored internal use of esalt from sync with number of salts to sync with number of digests
...
This enables a true N esalts per salt feature which is required for WPA/WPA2 handling
In case we need that for a future algorithm, just make sure to have a unique value in digest in hash parser.
Fixes https://github.com/hashcat/hashcat/issues/1158
2017-03-07 09:44:58 +01:00
jsteube
89f8739dde
Fixed overflow in bcrypt kernel in expand_key() function
2017-03-03 15:26:59 +01:00
philsmd
35c1f731b8
osx: some more volatile are required for luks/tc
2017-03-03 10:49:40 +01:00
philsmd
fbb1f92d2b
osx: -m 3200 = bcrypt needs a volatile variable
2017-03-02 22:24:12 +01:00
jsteube
72edd17481
Workaround -m 9100 to run on AMDGPU-Pro
2017-02-28 11:34:20 +01:00
jsteube
a5b8a91d58
Small -m 9100 cleanups
2017-02-28 11:13:57 +01:00
Jens Steube
e82ce9243d
Added support for filtering hccapx message pairs using --hccapx-message-pair
2017-02-27 12:09:49 +01:00
Jens Steube
0fc949ef69
Fixed cracking of PeopleSoft Token if salt length + password length is >= 128 byte
2017-02-27 11:06:53 +01:00
jsteube
2ece9742e1
Compress multiple newlines to one
2017-02-26 15:42:56 +01:00
jsteube
d0fa9d059d
Remove some unused macros
2017-02-26 15:34:45 +01:00
jsteube
22be61b20d
Remove aligned __constant datatypes from OpenCL kernel function declarations
2017-02-26 15:16:36 +01:00
jsteube
6401c58568
Align all the __constant buffers to workaround OpenCL JIT compiler errors in NV drivers 378.x
2017-02-26 15:04:53 +01:00
jsteube
3fb433de60
Remove __constant from OpenCL kernel function declarations
2017-02-26 14:57:26 +01:00
jsteube
ecb851ecda
Testwise workaround for -m 9100 on 378.x
2017-02-26 14:49:29 +01:00
jsteube
c094f3b511
Workaround added for NVidia OpenCL runtime: RACF kernel requires EBCDIC lookup to be done on shared memory
2017-02-25 17:36:29 +01:00
Jens Steube
2dd8018915
Fix -m 4520 for salt length exactly 15
2017-02-25 12:53:08 +01:00
jsteube
7aab78fb52
Fix broken SHA512 in LUKS due to union refactoring in tmps variable
2017-02-25 12:19:47 +01:00
jsteube
ba5fb80a38
Refactor kernel declarations for Skip32 to enable OSX using it
2017-02-23 15:18:41 +01:00
Jens Steube
4a3c90dd3c
Fixes https://github.com/hashcat/hashcat/issues/1123
2017-02-22 20:53:14 +01:00
jsteube
9b08d4af0f
Update hccapx format to version 4
2017-02-21 20:07:18 +01:00
Jens Steube
dd55c1eb66
WPA: Changed format for outfile and potfile from essid:mac1:mac2 to hash:mac_ap:mac_sta:essid
...
Fixes https://github.com/hashcat/hashcat/issues/1113
2017-02-19 14:45:27 +01:00
jsteube
bbb4c74e85
OpenCL Kernel: Remove "static" keyword from function declarations; Causes older Intel OpenCL runtimes to fail compiling
2017-02-17 10:11:05 +01:00
jsteube
63b7321be2
Fixed WPA/WPA2 cracking in case eapol frame is >= 248 byte
2017-02-13 18:31:15 +01:00
jsteube
366f5133ac
Workaround added for AMDGPU-Pro OpenCL runtime: RAR3 kernel require a volatile variable to work correctly
2017-02-13 11:36:16 +01:00
philsmd
227c0be95e
resolves #1018 : added -m 3910 = md5(md5($pass).md5($salt))
2017-02-12 18:12:17 +01:00
jsteube
717da7f4f2
Added support for loading hccapx files
2017-02-06 17:03:42 +01:00
philsmd
c18c2950c9
mv switch_buffer_by_offset_8x4_le_S and switch_buffer_by_offset_8x4_le_VV () into inc_common.cl
2017-02-03 11:32:19 +01:00
philsmd
15a9644f2a
fixes #943 : added -m 15000 = FileZilla Server >= 0.9.55
2017-02-03 00:07:31 +01:00
jsteube
c1d88f3234
Fix updated switch_buffer_* functions to run on AMD
2017-02-02 13:11:59 +01:00
philsmd
fe6309caa7
fixes #398 : added -m 4110 md5($salt.md5($pass.$salt))
2017-02-01 19:56:49 +01:00
philsmd
8e689058d0
#398 : add -m 4010 = md5($salt.md5($salt.$pass))
2017-02-01 16:56:14 +01:00
jsteube
16beac5b07
Fix kernel m04520_a3.cl
2017-01-31 12:04:36 +01:00
jsteube
fbae77b976
Fix kernel m04520_a1.cl
2017-01-31 11:54:57 +01:00
jsteube
b886dc3ede
Fix kernel m04520_a0.cl
2017-01-31 11:54:20 +01:00
jsteube
e0c3f447da
Added hash-mode 4520 = sha1($salt.sha1($pass))
...
Added hash-mode 4522 = PunBB
OpenCL Kernel: Renumbered hash-mode 7600 to 4521
The mode 4520 is the first to support salt length up to 64
2017-01-31 11:44:58 +01:00
philsmd
96e312ccb6
fixes #537 : added -m 7000 = Fortigate (FortiOS)
2017-01-30 21:18:37 +01:00
Jens Steube
3baec81d90
Rewrite -m 13400 to work with SHM_TYPE instead of __local to workaround compiler error on Intel CPU
2017-01-30 13:03:56 +01:00
jsteube
1b8c2a29f1
Added hash-mode 14900 = Skip32
2017-01-29 16:43:08 +01:00
jsteube
dd263c1d20
Optimize luks_tmp_t type size
2017-01-29 10:39:45 +01:00
jsteube
dfba341ac5
Fix some CRLF in OpenCL kernels
2017-01-29 10:32:14 +01:00
jsteube
e0189cb741
Fix some compiler warnings for older compilers
2017-01-29 10:23:34 +01:00
jsteube
7c7e4605d4
Fix -m 13400 include filename changed during LUKS implementation
2017-01-27 20:59:15 +01:00
Jens Steube
07c89833c9
Added hash-mode 14800 = iTunes Backup >= 10.0
2017-01-26 21:16:29 +01:00
philsmd
9327475b41
added -m 14700 = iTunes Backup < 10.0
2017-01-25 19:07:07 +01:00
philsmd
6fe0173a79
#965 : new hook function to support LZMA1/LZMA2 decompression for -m 11600 = 7-Zip
2017-01-24 10:28:35 +01:00
Jens Steube
5c5f8da9b1
Fixed DEScrypt cracking in BF mode in case the hashlist contains more than 16 times the same salt
...
Fixes https://github.com/hashcat/hashcat/issues/972
2017-01-23 13:40:16 +01:00
jsteube
8257883ec1
Added hash-mode 14600 = LUKS
2017-01-21 15:37:44 +01:00
jsteube
a1c13778c7
Workaround added for AMDGPU-Pro OpenCL runtime: AES encrypt and decrypt Invertkey function was calculated wrong in certain cases
2017-01-11 16:04:05 +01:00
Jens Steube
b0ff13b496
Truecrypt/Veracrypt: Use CRC32 to verify headers instead of fuzzy logic, greatly reduces false positives from 18:2^48 to 3:2^64
2016-12-31 02:10:10 +01:00
jsteube
72af615e8b
WPA cracking: Reuse PBKDF2 intermediate keys if duplicate essid is detected
2016-12-22 02:17:49 +01:00
Gabriele Gristina
37f562cabd
Reorganized 'SHA-2' constants
2016-12-17 19:50:28 +01:00
Gabriele Gristina
496c749b2b
Add missings requirements for SHA-224 support
2016-12-17 19:09:52 +01:00
Gabriele Gristina
8b0764bc4d
Add support for SHA-224
2016-12-16 02:05:12 +01:00
jsteube
efff87b9d8
Fix some leftover spaces when experimenting with restrict keyword
2016-12-02 15:00:23 +01:00
jsteube
d3c10bdb35
Replaced SETSHIFTEDINT() with PUTCHAR() on AMD to workaround OpenCL runtime bug
2016-12-01 18:10:55 +01:00
jsteube
1eab457963
Workaround -m 7900 performance loss on AMD caused by CL1.2
2016-11-30 18:55:02 +01:00
jsteube
cad3b3e10b
Get rid of truecrypt_mdlen
2016-11-30 11:41:31 +01:00
Gabriele Gristina
d815667880
aes256 test 01 + OpenCL/m13400.cl aes const optimization
2016-11-29 00:49:03 +01:00
Gabriele Gristina
d9ff76052b
aes256 test 01
2016-11-28 23:58:50 +01:00
Jens Steube
b9c0c26917
Optimize KeePass on GTX1080
2016-11-28 17:35:05 +01:00
jsteube
7f8c129cbc
Merge branch 'fix_m14400_a3' of https://github.com/matrix/hashcat into matrix-fix_m14400_a3
2016-11-28 10:59:20 +01:00
jsteube
6b3cb78154
Merge branch 'fix_m14400_a1' of https://github.com/matrix/hashcat into matrix-fix_m14400_a1
2016-11-28 10:59:16 +01:00
jsteube
9c39ee4e8b
Merge branch 'fix_m14400_a0' of https://github.com/matrix/hashcat into matrix-fix_m14400_a0
2016-11-28 10:59:12 +01:00
jsteube
55aaa86f6b
Merge branch 'fix_m14100_a3' of https://github.com/matrix/hashcat into matrix-fix_m14100_a3
2016-11-28 10:59:08 +01:00
jsteube
13dcf31019
Merge branch 'fix_m14100_a1' of https://github.com/matrix/hashcat into matrix-fix_m14100_a1
2016-11-28 10:59:03 +01:00
jsteube
58abbd10ce
Merge branch 'fix_m14100_a0' of https://github.com/matrix/hashcat into matrix-fix_m14100_a0
2016-11-28 10:58:58 +01:00
jsteube
80ab010fca
Merge branch 'fix_m14000_a3' of https://github.com/matrix/hashcat into matrix-fix_m14000_a3
2016-11-28 10:58:53 +01:00
jsteube
5a186e5414
Merge branch 'fix_m14000_a1' of https://github.com/matrix/hashcat into matrix-fix_m14000_a1
2016-11-28 10:58:49 +01:00
jsteube
d5d965bde7
Merge branch 'fix_m14000_a0' of https://github.com/matrix/hashcat into matrix-fix_m14000_a0
2016-11-28 10:58:44 +01:00
jsteube
e43bc6102f
Merge branch 'fix_m13900_a3' of https://github.com/matrix/hashcat into matrix-fix_m13900_a3
2016-11-28 10:58:40 +01:00
jsteube
0285f67066
Merge branch 'fix_m13900_a1' of https://github.com/matrix/hashcat into matrix-fix_m13900_a1
2016-11-28 10:58:36 +01:00
jsteube
780a7d2129
Merge branch 'fix_m13900_a0' of https://github.com/matrix/hashcat into matrix-fix_m13900_a0
2016-11-28 10:58:31 +01:00
jsteube
0c1dbe881d
Merge branch 'fix_m13800_a3' of https://github.com/matrix/hashcat into matrix-fix_m13800_a3
2016-11-28 10:58:27 +01:00
jsteube
27f83ed3a9
Merge branch 'fix_m13800_a1' of https://github.com/matrix/hashcat into matrix-fix_m13800_a1
2016-11-28 10:58:23 +01:00
jsteube
cde81668ac
Merge branch 'fix_m13800_a0' of https://github.com/matrix/hashcat into matrix-fix_m13800_a0
2016-11-28 10:58:18 +01:00
jsteube
d104aac2f5
Merge branch 'fix_m13753' of https://github.com/matrix/hashcat into matrix-fix_m13753
2016-11-28 10:58:14 +01:00
jsteube
81db5fd165
Merge branch 'fix_m13752' of https://github.com/matrix/hashcat into matrix-fix_m13752
2016-11-28 10:58:09 +01:00
jsteube
b6803615b0
Merge branch 'fix_m13751' of https://github.com/matrix/hashcat into matrix-fix_m13751
2016-11-28 10:58:05 +01:00
jsteube
dcde26a336
Merge branch 'fix_m13600' of https://github.com/matrix/hashcat into matrix-fix_m13600
2016-11-28 10:58:00 +01:00
jsteube
88a778a470
Merge branch 'fix_m13500_a3' of https://github.com/matrix/hashcat into matrix-fix_m13500_a3
2016-11-28 10:57:56 +01:00
jsteube
a073abc0bb
Merge branch 'fix_m13500_a1' of https://github.com/matrix/hashcat into matrix-fix_m13500_a1
2016-11-28 10:57:52 +01:00
jsteube
00fa309815
Merge branch 'fix_m13500_a0' of https://github.com/matrix/hashcat into matrix-fix_m13500_a0
2016-11-28 10:57:48 +01:00
jsteube
aedc28eec1
Merge branch 'fix_m13400' of https://github.com/matrix/hashcat into matrix-fix_m13400
2016-11-28 10:57:43 +01:00
jsteube
a7e9fbea0f
Merge branch 'fix_m13300_a3' of https://github.com/matrix/hashcat into matrix-fix_m13300_a3
2016-11-28 10:57:39 +01:00
jsteube
a225da39a9
Merge branch 'fix_m13200' of https://github.com/matrix/hashcat into matrix-fix_m13200
2016-11-28 10:57:30 +01:00
jsteube
6c445e35d7
Merge branch 'fix_m13100_a3' of https://github.com/matrix/hashcat into matrix-fix_m13100_a3
2016-11-28 10:57:26 +01:00
jsteube
337957d96f
Merge branch 'fix_m13100_a1' of https://github.com/matrix/hashcat into matrix-fix_m13100_a1
2016-11-28 10:57:22 +01:00
jsteube
878b50e0d3
Merge branch 'fix_m13100_a0' of https://github.com/matrix/hashcat into matrix-fix_m13100_a0
2016-11-28 10:57:17 +01:00
jsteube
5ad247240d
Merge branch 'fix_m13000' of https://github.com/matrix/hashcat into matrix-fix_m13000
2016-11-28 10:57:13 +01:00
jsteube
c7d56925ca
Merge branch 'fix_m12900' of https://github.com/matrix/hashcat into matrix-fix_m12900
2016-11-28 10:57:09 +01:00
jsteube
4ecf558ec7
Merge branch 'fix_m12800' of https://github.com/matrix/hashcat into matrix-fix_m12800
2016-11-28 10:57:05 +01:00
jsteube
1056b688bb
Merge branch 'fix_m12700' of https://github.com/matrix/hashcat into matrix-fix_m12700
2016-11-28 10:57:00 +01:00
jsteube
7bba144b56
Merge branch 'fix_m12600_a3' of https://github.com/matrix/hashcat into matrix-fix_m12600_a3
2016-11-28 10:56:56 +01:00
jsteube
585c80fc22
Merge branch 'fix_m12500' of https://github.com/matrix/hashcat into matrix-fix_m12500
2016-11-28 10:56:47 +01:00
jsteube
afbe21c64f
Merge branch 'fix_m12400' of https://github.com/matrix/hashcat into matrix-fix_m12400
2016-11-28 10:56:43 +01:00
jsteube
1e7fd5044e
Merge branch 'fix_m12300' of https://github.com/matrix/hashcat into matrix-fix_m12300
2016-11-28 10:56:38 +01:00
jsteube
d5e668a4a8
Merge branch 'fix_m12200' of https://github.com/matrix/hashcat into matrix-fix_m12200
2016-11-28 10:56:34 +01:00
jsteube
fa2caacbb0
Merge branch 'fix_m12000' of https://github.com/matrix/hashcat into matrix-fix_m12000
2016-11-28 10:56:30 +01:00
jsteube
ed6d2dc1c3
Merge branch 'fix_m11900' of https://github.com/matrix/hashcat into matrix-fix_m11900
2016-11-28 10:56:25 +01:00
jsteube
5a5535a00e
Merge branch 'fix_m11800_a3' of https://github.com/matrix/hashcat into matrix-fix_m11800_a3
2016-11-28 10:56:21 +01:00
jsteube
e31f8c7444
Merge branch 'fix_m11800_a1' of https://github.com/matrix/hashcat into matrix-fix_m11800_a1
2016-11-28 10:56:17 +01:00
jsteube
2afd1b5613
Merge branch 'fix_m11800_a0' of https://github.com/matrix/hashcat into matrix-fix_m11800_a0
2016-11-28 10:56:13 +01:00
jsteube
524d71bf02
Merge branch 'fix_m11700_a3' of https://github.com/matrix/hashcat into matrix-fix_m11700_a3
2016-11-28 10:56:08 +01:00
jsteube
747045b8ed
Merge branch 'fix_m11700_a1' of https://github.com/matrix/hashcat into matrix-fix_m11700_a1
2016-11-28 10:56:03 +01:00
jsteube
b708616e5e
Merge branch 'fix_m11700_a0' of https://github.com/matrix/hashcat into matrix-fix_m11700_a0
2016-11-28 10:55:58 +01:00
jsteube
b559e99287
Merge branch 'fix_m11600' of https://github.com/matrix/hashcat into matrix-fix_m11600
2016-11-28 10:55:53 +01:00
jsteube
c239eddc82
Merge branch 'fix_m11500_a3' of https://github.com/matrix/hashcat into matrix-fix_m11500_a3
2016-11-28 10:55:49 +01:00
jsteube
6b494afb6b
Merge branch 'fix_m11500_a1' of https://github.com/matrix/hashcat into matrix-fix_m11500_a1
2016-11-28 10:55:45 +01:00
jsteube
fc86594441
Merge branch 'fix_m11500_a0' of https://github.com/matrix/hashcat into matrix-fix_m11500_a0
2016-11-28 10:55:40 +01:00
jsteube
3d118c7a31
Merge branch 'fix_m11400_a3' of https://github.com/matrix/hashcat into matrix-fix_m11400_a3
2016-11-28 10:55:36 +01:00
jsteube
ea830c0499
Merge branch 'fix_m11400_a1' of https://github.com/matrix/hashcat into matrix-fix_m11400_a1
2016-11-28 10:55:31 +01:00
jsteube
510c7e97c2
Merge branch 'fix_m11400_a0' of https://github.com/matrix/hashcat into matrix-fix_m11400_a0
2016-11-28 10:55:27 +01:00
jsteube
27136bb604
Merge branch 'fix_m11300' of https://github.com/matrix/hashcat into matrix-fix_m11300
2016-11-28 10:55:22 +01:00
jsteube
2a272f201b
Merge branch 'fix_m11200_a3' of https://github.com/matrix/hashcat into matrix-fix_m11200_a3
2016-11-28 10:55:18 +01:00
jsteube
25b1451d19
Merge branch 'fix_m11100_a3' of https://github.com/matrix/hashcat into matrix-fix_m11100_a3
2016-11-28 10:55:07 +01:00
jsteube
41168693ed
Merge branch 'fix_m11000_a3' of https://github.com/matrix/hashcat into matrix-fix_m11000_a3
2016-11-28 10:54:57 +01:00
jsteube
1655f560ee
Merge branch 'fix_m10900' of https://github.com/matrix/hashcat into matrix-fix_m10900
2016-11-28 10:54:49 +01:00
jsteube
7341d9d92c
Merge branch 'fix_m10800_a3' of https://github.com/matrix/hashcat into matrix-fix_m10800_a3
2016-11-28 10:54:44 +01:00
jsteube
b47b35fa9e
Merge branch 'fix_m10800_a1' of https://github.com/matrix/hashcat into matrix-fix_m10800_a1
2016-11-28 10:54:40 +01:00
jsteube
0998a6061a
Merge branch 'fix_m10800_a0' of https://github.com/matrix/hashcat into matrix-fix_m10800_a0
2016-11-28 10:54:35 +01:00
jsteube
e80dce5767
Merge branch 'fix_m10700' of https://github.com/matrix/hashcat into matrix-fix_m10700
2016-11-28 10:54:31 +01:00
jsteube
41033e9eba
Merge branch 'fix_m10500' of https://github.com/matrix/hashcat into matrix-fix_m10500
2016-11-28 10:54:27 +01:00
jsteube
2eb10f0119
Merge branch 'fix_m10420_a3' of https://github.com/matrix/hashcat into matrix-fix_m10420_a3
2016-11-28 10:54:22 +01:00
jsteube
2edf2a2182
Merge branch 'fix_m10420_a1' of https://github.com/matrix/hashcat into matrix-fix_m10420_a1
2016-11-28 10:54:18 +01:00
jsteube
5624c9cd3f
Merge branch 'fix_m10420_a0' of https://github.com/matrix/hashcat into matrix-fix_m10420_a0
2016-11-28 10:54:14 +01:00
jsteube
4e9955bfca
Merge branch 'fix_m10410_a3' of https://github.com/matrix/hashcat into matrix-fix_m10410_a3
2016-11-28 10:54:09 +01:00
jsteube
4b4a24603c
Merge branch 'fix_m10410_a1' of https://github.com/matrix/hashcat into matrix-fix_m10410_a1
2016-11-28 10:54:05 +01:00
jsteube
c8331f3301
Merge branch 'fix_m10410_a0' of https://github.com/matrix/hashcat into matrix-fix_m10410_a0
2016-11-28 10:54:00 +01:00
jsteube
efc007012b
Merge branch 'fix_m10400_a3' of https://github.com/matrix/hashcat into matrix-fix_m10400_a3
2016-11-28 10:53:55 +01:00
jsteube
6c442842d2
Merge branch 'fix_m10400_a1' of https://github.com/matrix/hashcat into matrix-fix_m10400_a1
2016-11-28 10:53:51 +01:00
jsteube
736939b936
Merge branch 'fix_m10400_a0' of https://github.com/matrix/hashcat into matrix-fix_m10400_a0
2016-11-28 10:53:47 +01:00
jsteube
ff012849a4
Merge branch 'fix_m10300' of https://github.com/matrix/hashcat into matrix-fix_m10300
2016-11-28 10:53:43 +01:00
jsteube
22287d2b60
Merge branch 'fix_m10100_a3' of https://github.com/matrix/hashcat into matrix-fix_m10100_a3
2016-11-28 10:53:38 +01:00
jsteube
553f33d301
Merge branch 'fix_m09900_a3' of https://github.com/matrix/hashcat into matrix-fix_m09900_a3
2016-11-28 10:53:29 +01:00
jsteube
d8f05dab2e
Merge branch 'fix_m09820_a3' of https://github.com/matrix/hashcat into matrix-fix_m09820_a3
2016-11-28 10:53:20 +01:00
jsteube
1db02c977d
Merge branch 'fix_m09820_a1' of https://github.com/matrix/hashcat into matrix-fix_m09820_a1
2016-11-28 10:53:16 +01:00
jsteube
93adc241b8
Merge branch 'fix_m09820_a0' of https://github.com/matrix/hashcat into matrix-fix_m09820_a0
2016-11-28 10:53:11 +01:00
jsteube
4f0ff0a6e1
Merge branch 'fix_m09810_a3' of https://github.com/matrix/hashcat into matrix-fix_m09810_a3
2016-11-28 10:53:07 +01:00
jsteube
5aa6653f26
Merge branch 'fix_m09810_a1' of https://github.com/matrix/hashcat into matrix-fix_m09810_a1
2016-11-28 10:53:03 +01:00
jsteube
5121047e94
Merge branch 'fix_m09810_a0' of https://github.com/matrix/hashcat into matrix-fix_m09810_a0
2016-11-28 10:52:58 +01:00
jsteube
c7813118ea
Merge branch 'fix_m09800_a3' of https://github.com/matrix/hashcat into matrix-fix_m09800_a3
2016-11-28 10:52:52 +01:00
jsteube
4c0224b8e5
Merge branch 'fix_m09800_a1' of https://github.com/matrix/hashcat into matrix-fix_m09800_a1
2016-11-28 10:52:47 +01:00
jsteube
b6e95ea6ae
Merge branch 'fix_m09800_a0' of https://github.com/matrix/hashcat into matrix-fix_m09800_a0
2016-11-28 10:52:43 +01:00
jsteube
e4cc998817
Merge branch 'fix_m09720_a3' of https://github.com/matrix/hashcat into matrix-fix_m09720_a3
2016-11-28 10:52:39 +01:00
jsteube
64cd660a21
Merge branch 'fix_m09720_a1' of https://github.com/matrix/hashcat into matrix-fix_m09720_a1
2016-11-28 10:52:35 +01:00
jsteube
edee38c20f
Merge branch 'fix_m09720_a0' of https://github.com/matrix/hashcat into matrix-fix_m09720_a0
2016-11-28 10:52:30 +01:00
jsteube
976e18bc3c
Merge branch 'fix_m09710_a3' of https://github.com/matrix/hashcat into matrix-fix_m09710_a3
2016-11-28 10:52:25 +01:00
jsteube
7dd93b4146
Merge branch 'fix_m09710_a1' of https://github.com/matrix/hashcat into matrix-fix_m09710_a1
2016-11-28 10:52:21 +01:00
jsteube
3341f62539
Merge branch 'fix_m09710_a0' of https://github.com/matrix/hashcat into matrix-fix_m09710_a0
2016-11-28 10:52:16 +01:00
jsteube
e53dd6f906
Merge branch 'fix_m09700_a3' of https://github.com/matrix/hashcat into matrix-fix_m09700_a3
2016-11-28 10:52:12 +01:00
jsteube
2edd892a0a
Merge branch 'fix_m09700_a1' of https://github.com/matrix/hashcat into matrix-fix_m09700_a1
2016-11-28 10:52:07 +01:00
jsteube
08d7f73f8b
Merge branch 'fix_m09700_a0' of https://github.com/matrix/hashcat into matrix-fix_m09700_a0
2016-11-28 10:52:03 +01:00
jsteube
cf4f04e2e3
Merge branch 'fix_m09600' of https://github.com/matrix/hashcat into matrix-fix_m09600
2016-11-28 10:51:59 +01:00
jsteube
d6c80dc73a
Merge branch 'fix_m09500' of https://github.com/matrix/hashcat into matrix-fix_m09500
2016-11-28 10:51:54 +01:00
jsteube
16bba5f5a0
Merge branch 'fix_m09400' of https://github.com/matrix/hashcat into matrix-fix_m09400
2016-11-28 10:51:50 +01:00
jsteube
b2692705dd
Merge branch 'fix_m09100' of https://github.com/matrix/hashcat into matrix-fix_m09100
2016-11-28 10:51:45 +01:00
jsteube
2e70b51529
Merge branch 'fix_m09000' of https://github.com/matrix/hashcat into matrix-fix_m09000
2016-11-28 10:51:41 +01:00
jsteube
3eacd660a4
Merge branch 'fix_m08900' of https://github.com/matrix/hashcat into matrix-fix_m08900
2016-11-28 10:51:37 +01:00
jsteube
419575ca0b
Merge branch 'fix_m08800' of https://github.com/matrix/hashcat into matrix-fix_m08800
2016-11-28 10:51:32 +01:00
jsteube
58af223037
Merge branch 'fix_m08700_a3' of https://github.com/matrix/hashcat into matrix-fix_m08700_a3
2016-11-28 10:51:28 +01:00
jsteube
7a0e02f622
Merge branch 'fix_m08700_a1' of https://github.com/matrix/hashcat into matrix-fix_m08700_a1
2016-11-28 10:51:24 +01:00
jsteube
bd1f412ee3
Merge branch 'fix_m08700_a0' of https://github.com/matrix/hashcat into matrix-fix_m08700_a0
2016-11-28 10:51:19 +01:00
jsteube
c8f4409ee6
Merge branch 'fix_m08600_a3' of https://github.com/matrix/hashcat into matrix-fix_m08600_a3
2016-11-28 10:51:15 +01:00
jsteube
624092842f
Merge branch 'fix_m08600_a1' of https://github.com/matrix/hashcat into matrix-fix_m08600_a1
2016-11-28 10:51:11 +01:00
jsteube
107866cba3
Merge branch 'fix_m08600_a0' of https://github.com/matrix/hashcat into matrix-fix_m08600_a0
2016-11-28 10:51:07 +01:00
jsteube
440689d3d3
Merge branch 'fix_m08500_a3' of https://github.com/matrix/hashcat into matrix-fix_m08500_a3
2016-11-28 10:51:02 +01:00
jsteube
c626993926
Merge branch 'fix_m08500_a1' of https://github.com/matrix/hashcat into matrix-fix_m08500_a1
2016-11-28 10:50:58 +01:00
jsteube
13e52100a5
Merge branch 'fix_m08500_a0' of https://github.com/matrix/hashcat into matrix-fix_m08500_a0
2016-11-28 10:50:54 +01:00
jsteube
6e96c1d963
Merge branch 'fix_m08400_a3' of https://github.com/matrix/hashcat into matrix-fix_m08400_a3
2016-11-28 10:50:48 +01:00
jsteube
c0ce1f4f76
Merge branch 'fix_m08400_a1' of https://github.com/matrix/hashcat into matrix-fix_m08400_a1
2016-11-28 10:50:43 +01:00
jsteube
e00d4d9307
Merge branch 'fix_m08400_a0' of https://github.com/matrix/hashcat into matrix-fix_m08400_a0
2016-11-28 10:50:38 +01:00
jsteube
42ad7b4ece
Merge branch 'fix_m08300_a3' of https://github.com/matrix/hashcat into matrix-fix_m08300_a3
2016-11-28 10:50:33 +01:00
jsteube
d6c98f0044
Merge branch 'fix_m08300_a1' of https://github.com/matrix/hashcat into matrix-fix_m08300_a1
2016-11-28 10:50:29 +01:00
jsteube
37356b2092
Merge branch 'fix_m08300_a0' of https://github.com/matrix/hashcat into matrix-fix_m08300_a0
2016-11-28 10:50:24 +01:00
jsteube
02966f2c89
Merge branch 'fix_m08200' of https://github.com/matrix/hashcat into matrix-fix_m08200
2016-11-28 10:50:20 +01:00
jsteube
e5e33b45c0
Merge branch 'fix_m08100_a3' of https://github.com/matrix/hashcat into matrix-fix_m08100_a3
2016-11-28 10:50:16 +01:00
jsteube
34bff264a0
Merge branch 'fix_m08000_a3' of https://github.com/matrix/hashcat into matrix-fix_m08000_a3
2016-11-28 10:50:07 +01:00
jsteube
99a77a2117
Merge branch 'fix_m08000_a1' of https://github.com/matrix/hashcat into matrix-fix_m08000_a1
2016-11-28 10:50:03 +01:00
jsteube
af43eb2895
Merge branch 'fix_m08000_a0' of https://github.com/matrix/hashcat into matrix-fix_m08000_a0
2016-11-28 10:49:58 +01:00
jsteube
cb1f56d33f
Merge branch 'fix_m07900' of https://github.com/matrix/hashcat into matrix-fix_m07900
2016-11-28 10:49:53 +01:00
jsteube
d9b911a29b
Merge branch 'fix_m07800_a3' of https://github.com/matrix/hashcat into matrix-fix_m07800_a3
2016-11-28 10:49:49 +01:00
jsteube
acbab035ec
Merge branch 'fix_m07800_a1' of https://github.com/matrix/hashcat into matrix-fix_m07800_a1
2016-11-28 10:49:45 +01:00
jsteube
d70f933c01
Merge branch 'fix_m07800_a0' of https://github.com/matrix/hashcat into matrix-fix_m07800_a0
2016-11-28 10:49:41 +01:00
jsteube
102cbd67ac
Merge branch 'fix_m07700_a3' of https://github.com/matrix/hashcat into matrix-fix_m07700_a3
2016-11-28 10:49:36 +01:00
jsteube
65f726182a
Merge branch 'fix_m07700_a1' of https://github.com/matrix/hashcat into matrix-fix_m07700_a1
2016-11-28 10:49:32 +01:00
jsteube
1188e79b14
Merge branch 'fix_m07700_a0' of https://github.com/matrix/hashcat into matrix-fix_m07700_a0
2016-11-28 10:49:28 +01:00
jsteube
a30795404a
Merge branch 'fix_m07600_a3' of https://github.com/matrix/hashcat into matrix-fix_m07600_a3
2016-11-28 10:49:23 +01:00
jsteube
d7f041bd29
Merge branch 'fix_m07500_a3' of https://github.com/matrix/hashcat into matrix-fix_m07500_a3
2016-11-28 10:49:15 +01:00
jsteube
800d486ed9
Merge branch 'fix_m07500_a1' of https://github.com/matrix/hashcat into matrix-fix_m07500_a1
2016-11-28 10:49:10 +01:00
jsteube
29fcbe41ca
Merge branch 'fix_m07500_a0' of https://github.com/matrix/hashcat into matrix-fix_m07500_a0
2016-11-28 10:49:07 +01:00
jsteube
51f457e8f5
Merge branch 'fix_m07400' of https://github.com/matrix/hashcat into matrix-fix_m07400
2016-11-28 10:49:02 +01:00
jsteube
951f6bf997
Merge branch 'fix_m07300_a3' of https://github.com/matrix/hashcat into matrix-fix_m07300_a3
2016-11-28 10:48:58 +01:00
jsteube
5acd5c698c
Merge branch 'fix_m07300_a1' of https://github.com/matrix/hashcat into matrix-fix_m07300_a1
2016-11-28 10:48:51 +01:00
jsteube
ea183111d5
Merge branch 'fix_m07300_a0' of https://github.com/matrix/hashcat into matrix-fix_m07300_a0
2016-11-28 10:48:46 +01:00
jsteube
a57f4ce35f
Merge branch 'fix_m07100' of https://github.com/matrix/hashcat into matrix-fix_m07100
2016-11-28 10:48:42 +01:00
jsteube
2ff1a01979
Merge branch 'fix_m06900_a3' of https://github.com/matrix/hashcat into matrix-fix_m06900_a3
2016-11-28 10:48:38 +01:00
jsteube
06711a74c9
Merge branch 'fix_m06800' of https://github.com/matrix/hashcat into matrix-fix_m06800
2016-11-28 10:48:29 +01:00
jsteube
e070ea48b4
Merge branch 'fix_m06700' of https://github.com/matrix/hashcat into matrix-fix_m06700
2016-11-28 10:48:25 +01:00
jsteube
d53117e0da
Merge branch 'fix_m06600' of https://github.com/matrix/hashcat into matrix-fix_m06600
2016-11-28 10:48:07 +01:00
jsteube
7d0e9872e6
Merge branch 'fix_m06500' of https://github.com/matrix/hashcat into matrix-fix_m06500
2016-11-28 10:48:03 +01:00
jsteube
a2a02849f5
Merge branch 'fix_m06400' of https://github.com/matrix/hashcat into matrix-fix_m06400
2016-11-28 10:47:58 +01:00
jsteube
d3fcecba6c
Merge branch 'fix_m06300' of https://github.com/matrix/hashcat into matrix-fix_m06300
2016-11-28 10:47:54 +01:00
jsteube
24bbbf054c
Merge branch 'fix_m06233' of https://github.com/matrix/hashcat into matrix-fix_m06233
2016-11-28 10:47:50 +01:00
jsteube
064f902b09
Merge branch 'fix_m06232' of https://github.com/matrix/hashcat into matrix-fix_m06232
2016-11-28 10:47:46 +01:00
jsteube
8ea0dc075e
Merge branch 'fix_m06231' of https://github.com/matrix/hashcat into matrix-fix_m06231
2016-11-28 10:47:42 +01:00
jsteube
635355dc21
Merge branch 'fix_m06223' of https://github.com/matrix/hashcat into matrix-fix_m06223
2016-11-28 10:47:38 +01:00
jsteube
b5851781b9
Merge branch 'fix_m06222' of https://github.com/matrix/hashcat into matrix-fix_m06222
2016-11-28 10:47:34 +01:00
jsteube
022c2b05d9
Merge branch 'fix_m06221' of https://github.com/matrix/hashcat into matrix-fix_m06221
2016-11-28 10:47:30 +01:00
jsteube
1676009f3d
Merge branch 'fix_m06213' of https://github.com/matrix/hashcat into matrix-fix_m06213
2016-11-28 10:47:26 +01:00
jsteube
ad5cc05265
Merge branch 'fix_m06212' of https://github.com/matrix/hashcat into matrix-fix_m06212
2016-11-28 10:47:22 +01:00
jsteube
19d5cf2176
Merge branch 'fix_m06211' of https://github.com/matrix/hashcat into matrix-fix_m06211
2016-11-28 10:47:17 +01:00
jsteube
c5449894f6
Merge branch 'fix_m06100_a3' of https://github.com/matrix/hashcat into matrix-fix_m06100_a3
2016-11-28 10:47:13 +01:00
jsteube
caa3fcebf1
Merge branch 'fix_m06100_a1' of https://github.com/matrix/hashcat into matrix-fix_m06100_a1
2016-11-28 10:47:09 +01:00
jsteube
abc9dfb442
Merge branch 'fix_m06100_a0' of https://github.com/matrix/hashcat into matrix-fix_m06100_a0
2016-11-28 10:47:05 +01:00
jsteube
c29069c8f5
Merge branch 'fix_m06000_a3' of https://github.com/matrix/hashcat into matrix-fix_m06000_a3
2016-11-28 10:47:01 +01:00
jsteube
41e89b836d
Merge branch 'fix_m06000_a1' of https://github.com/matrix/hashcat into matrix-fix_m06000_a1
2016-11-28 10:46:57 +01:00
jsteube
21153246cf
Merge branch 'fix_m06000_a0' of https://github.com/matrix/hashcat into matrix-fix_m06000_a0
2016-11-28 10:46:53 +01:00
jsteube
a7869b12de
Merge branch 'fix_m05800' of https://github.com/matrix/hashcat into matrix-fix_m05800
2016-11-28 10:46:49 +01:00
jsteube
7f4b589a16
Merge branch 'fix_m05600_a3' of https://github.com/matrix/hashcat into matrix-fix_m05600_a3
2016-11-28 10:46:45 +01:00
jsteube
96f5865abc
Merge branch 'fix_m05600_a1' of https://github.com/matrix/hashcat into matrix-fix_m05600_a1
2016-11-28 10:46:41 +01:00
jsteube
8722035b4e
Merge branch 'fix_m05600_a0' of https://github.com/matrix/hashcat into matrix-fix_m05600_a0
2016-11-28 10:46:37 +01:00
jsteube
d4055e606f
Merge branch 'fix_m05500_a3' of https://github.com/matrix/hashcat into matrix-fix_m05500_a3
2016-11-28 10:46:33 +01:00
jsteube
a299f37d6f
Merge branch 'fix_m05500_a1' of https://github.com/matrix/hashcat into matrix-fix_m05500_a1
2016-11-28 10:46:28 +01:00
jsteube
246372f655
Merge branch 'fix_m05500_a0' of https://github.com/matrix/hashcat into matrix-fix_m05500_a0
2016-11-28 10:46:24 +01:00
jsteube
243d04f746
Merge branch 'fix_m05400_a3' of https://github.com/matrix/hashcat into matrix-fix_m05400_a3
2016-11-28 10:46:20 +01:00
jsteube
7eb3e71511
Merge branch 'fix_m05400_a1' of https://github.com/matrix/hashcat into matrix-fix_m05400_a1
2016-11-28 10:46:16 +01:00
jsteube
94806e9536
Merge branch 'fix_m05400_a0' of https://github.com/matrix/hashcat into matrix-fix_m05400_a0
2016-11-28 10:46:12 +01:00
jsteube
8f43f8af89
Merge branch 'fix_m05300_a3' of https://github.com/matrix/hashcat into matrix-fix_m05300_a3
2016-11-28 10:46:08 +01:00
jsteube
715d499af2
Merge branch 'fix_m05300_a1' of https://github.com/matrix/hashcat into matrix-fix_m05300_a1
2016-11-28 10:46:04 +01:00
jsteube
bef684a2e2
Merge branch 'fix_m05300_a0' of https://github.com/matrix/hashcat into matrix-fix_m05300_a0
2016-11-28 10:45:59 +01:00
jsteube
a510cd2431
Merge branch 'fix_m05200' of https://github.com/matrix/hashcat into matrix-fix_m05200
2016-11-28 10:45:55 +01:00
jsteube
cb1b9c9cbd
Merge branch 'fix_m05100_a3' of https://github.com/matrix/hashcat into matrix-fix_m05100_a3
2016-11-28 10:45:51 +01:00
jsteube
a4b3d05c53
Merge branch 'fix_m05000_a3' of https://github.com/matrix/hashcat into matrix-fix_m05000_a3
2016-11-28 10:45:43 +01:00
jsteube
bf503bea65
Merge branch 'fix_m04900_a3' of https://github.com/matrix/hashcat into matrix-fix_m04900_a3
2016-11-28 10:45:34 +01:00
jsteube
55bf2a3292
Merge branch 'fix_m04800_a3' of https://github.com/matrix/hashcat into matrix-fix_m04800_a3
2016-11-28 10:45:25 +01:00
jsteube
9ed19e2faf
Merge branch 'fix_m04700_a3' of https://github.com/matrix/hashcat into matrix-fix_m04700_a3
2016-11-28 10:45:17 +01:00
jsteube
7c6af0dc95
Merge branch 'fix_m04500_a3' of https://github.com/matrix/hashcat into matrix-fix_m04500_a3
2016-11-28 10:45:08 +01:00
jsteube
db8359d9ad
Merge branch 'fix_m04400_a3' of https://github.com/matrix/hashcat into matrix-fix_m04400_a3
2016-11-28 10:44:59 +01:00
jsteube
b535af9c0a
Merge branch 'fix_m04310_a3' of https://github.com/matrix/hashcat into matrix-fix_m04310_a3
2016-11-28 10:44:51 +01:00
jsteube
fa5065be54
Merge branch 'fix_m03800_a3' of https://github.com/matrix/hashcat into matrix-fix_m03800_a3
2016-11-28 10:44:42 +01:00
jsteube
feb0face83
Merge branch 'fix_m03710_a3' of https://github.com/matrix/hashcat into matrix-fix_m03710_a3
2016-11-28 10:44:33 +01:00
jsteube
e42faf0b45
Merge branch 'fix_m03200' of https://github.com/matrix/hashcat into matrix-fix_m03200
2016-11-28 10:44:25 +01:00
jsteube
b1bb170071
Merge branch 'fix_m03100_a3' of https://github.com/matrix/hashcat into matrix-fix_m03100_a3
2016-11-28 10:44:21 +01:00
jsteube
ab7ef46ec0
Merge branch 'fix_m03100_a1' of https://github.com/matrix/hashcat into matrix-fix_m03100_a1
2016-11-28 10:44:17 +01:00
jsteube
b65cd14254
Merge branch 'fix_m03100_a0' of https://github.com/matrix/hashcat into matrix-fix_m03100_a0
2016-11-28 10:44:13 +01:00
jsteube
e63b6f0fb4
Merge branch 'fix_m03000_a3' of https://github.com/matrix/hashcat into matrix-fix_m03000_a3
2016-11-28 10:44:09 +01:00
jsteube
95e55ee4b7
Merge branch 'fix_m03000_a1' of https://github.com/matrix/hashcat into matrix-fix_m03000_a1
2016-11-28 10:44:04 +01:00
jsteube
d5b6384d36
Merge branch 'fix_m03000_a0' of https://github.com/matrix/hashcat into matrix-fix_m03000_a0
2016-11-28 10:44:00 +01:00
jsteube
b02e7d2219
Merge branch 'fix_m02810_a3' of https://github.com/matrix/hashcat into matrix-fix_m02810_a3
2016-11-28 10:43:56 +01:00
jsteube
8515e0a8ae
Merge branch 'fix_m02710_a3' of https://github.com/matrix/hashcat into matrix-fix_m02710_a3
2016-11-28 10:43:47 +01:00
jsteube
abd71d800d
Merge branch 'fix_m02610_a3' of https://github.com/matrix/hashcat into matrix-fix_m02610_a3
2016-11-28 10:43:39 +01:00
jsteube
6eb21f4fed
Merge branch 'fix_m02500' of https://github.com/matrix/hashcat into matrix-fix_m02500
2016-11-28 10:43:31 +01:00
jsteube
47aa8958b0
Merge branch 'fix_m02410_a3' of https://github.com/matrix/hashcat into matrix-fix_m02410_a3
2016-11-28 10:43:27 +01:00
jsteube
ece37191d9
Merge branch 'fix_m02400_a3' of https://github.com/matrix/hashcat into matrix-fix_m02400_a3
2016-11-28 10:43:18 +01:00
jsteube
e5e9900838
Merge branch 'fix_m02100' of https://github.com/matrix/hashcat into matrix-fix_m02100
2016-11-28 10:43:10 +01:00
jsteube
2a5b2edfea
Merge branch 'fix_m01800' of https://github.com/matrix/hashcat into matrix-fix_m01800
2016-11-28 10:42:59 +01:00
jsteube
37171a987f
Merge branch 'fix_m01760_a3' of https://github.com/matrix/hashcat into matrix-fix_m01760_a3
2016-11-28 10:42:55 +01:00
jsteube
0478acb27b
Merge branch 'fix_m01760_a1' of https://github.com/matrix/hashcat into matrix-fix_m01760_a1
2016-11-28 10:42:51 +01:00
jsteube
e331620ae5
Merge branch 'fix_m01760_a0' of https://github.com/matrix/hashcat into matrix-fix_m01760_a0
2016-11-28 10:42:46 +01:00
jsteube
3715c174f0
Merge branch 'fix_m01750_a3' of https://github.com/matrix/hashcat into matrix-fix_m01750_a3
2016-11-28 10:42:41 +01:00
jsteube
d85436b481
Merge branch 'fix_m01750_a1' of https://github.com/matrix/hashcat into matrix-fix_m01750_a1
2016-11-28 10:42:35 +01:00
jsteube
016106168d
Merge branch 'fix_m01750_a0' of https://github.com/matrix/hashcat into matrix-fix_m01750_a0
2016-11-28 10:42:29 +01:00
jsteube
a6125b60b9
Merge branch 'fix_m01740_a3' of https://github.com/matrix/hashcat into matrix-fix_m01740_a3
2016-11-28 10:42:24 +01:00
jsteube
7f153763c0
Merge branch 'fix_m01740_a1' of https://github.com/matrix/hashcat into matrix-fix_m01740_a1
2016-11-28 10:42:19 +01:00
jsteube
0d4a9e9693
Merge branch 'fix_m01740_a0' of https://github.com/matrix/hashcat into matrix-fix_m01740_a0
2016-11-28 10:42:08 +01:00
jsteube
9e0e3faa0e
Merge branch 'fix_m01730_a3' of https://github.com/matrix/hashcat into matrix-fix_m01730_a3
2016-11-28 10:42:04 +01:00
jsteube
42f84aeab0
Merge branch 'fix_m01730_a1' of https://github.com/matrix/hashcat into matrix-fix_m01730_a1
2016-11-28 10:42:00 +01:00
jsteube
babfaaf4f0
Merge branch 'fix_m01730_a0' of https://github.com/matrix/hashcat into matrix-fix_m01730_a0
2016-11-28 10:41:55 +01:00
jsteube
c382f71f36
Merge branch 'fix_m01720_a3' of https://github.com/matrix/hashcat into matrix-fix_m01720_a3
2016-11-28 10:41:51 +01:00
jsteube
d6ca7f3d34
Merge branch 'fix_m01720_a1' of https://github.com/matrix/hashcat into matrix-fix_m01720_a1
2016-11-28 10:41:47 +01:00
jsteube
10e7bcb15c
Merge branch 'fix_m01720_a0' of https://github.com/matrix/hashcat into matrix-fix_m01720_a0
2016-11-28 10:41:43 +01:00
jsteube
59929cb1ac
Merge branch 'fix_m01710_a3' of https://github.com/matrix/hashcat into matrix-fix_m01710_a3
2016-11-28 10:41:40 +01:00
jsteube
b2603b2ddd
Merge branch 'fix_m01710_a1' of https://github.com/matrix/hashcat into matrix-fix_m01710_a1
2016-11-28 10:41:36 +01:00
jsteube
75610f7fcd
Merge branch 'fix_m01710_a0' of https://github.com/matrix/hashcat into matrix-fix_m01710_a0
2016-11-28 10:41:32 +01:00
jsteube
757a53bc44
Merge branch 'fix_m01700_a3' of https://github.com/matrix/hashcat into matrix-fix_m01700_a3
2016-11-28 10:41:27 +01:00
jsteube
47a09372b8
Merge branch 'fix_m01700_a1' of https://github.com/matrix/hashcat into matrix-fix_m01700_a1
2016-11-28 10:41:24 +01:00
jsteube
e883d467b7
Merge branch 'fix_m01700_a0' of https://github.com/matrix/hashcat into matrix-fix_m01700_a0
2016-11-28 10:41:19 +01:00
jsteube
2b6766e7c4
Merge branch 'fix_m01600' of https://github.com/matrix/hashcat into matrix-fix_m01600
2016-11-28 10:41:15 +01:00
jsteube
2288000ea7
Merge branch 'fix_m01500_a3' of https://github.com/matrix/hashcat into matrix-fix_m01500_a3
2016-11-28 10:41:11 +01:00
jsteube
4e215e0c58
Merge branch 'fix_m01500_a1' of https://github.com/matrix/hashcat into matrix-fix_m01500_a1
2016-11-28 10:41:07 +01:00
jsteube
e1099160ab
Merge branch 'fix_m01500_a0' of https://github.com/matrix/hashcat into matrix-fix_m01500_a0
2016-11-28 10:41:03 +01:00
jsteube
790af4301a
Merge branch 'fix_m01460_a3' of https://github.com/matrix/hashcat into matrix-fix_m01460_a3
2016-11-28 10:40:59 +01:00
jsteube
6f400b69db
Merge branch 'fix_m01460_a1' of https://github.com/matrix/hashcat into matrix-fix_m01460_a1
2016-11-28 10:40:55 +01:00
jsteube
811cda2616
Merge branch 'fix_m01460_a0' of https://github.com/matrix/hashcat into matrix-fix_m01460_a0
2016-11-28 10:40:51 +01:00
jsteube
437ff9c3c5
Merge branch 'fix_m01450_a3' of https://github.com/matrix/hashcat into matrix-fix_m01450_a3
2016-11-28 10:40:47 +01:00
jsteube
72256a6c37
Merge branch 'fix_m01450_a1' of https://github.com/matrix/hashcat into matrix-fix_m01450_a1
2016-11-28 10:40:44 +01:00
jsteube
2604da6a07
Merge branch 'fix_m01450_a0' of https://github.com/matrix/hashcat into matrix-fix_m01450_a0
2016-11-28 10:40:40 +01:00
jsteube
9291d5b3d1
Merge branch 'fix_m01440_a3' of https://github.com/matrix/hashcat into matrix-fix_m01440_a3
2016-11-28 10:40:36 +01:00
jsteube
fe8749f109
Merge branch 'fix_m01430_a3' of https://github.com/matrix/hashcat into matrix-fix_m01430_a3
2016-11-28 10:40:28 +01:00
jsteube
bbf0e8b66f
Merge branch 'fix_m01420_a3' of https://github.com/matrix/hashcat into matrix-fix_m01420_a3
2016-11-28 10:40:19 +01:00
jsteube
9f89d4f278
Merge branch 'fix_m01410_a3' of https://github.com/matrix/hashcat into matrix-fix_m01410_a3
2016-11-28 10:40:10 +01:00
jsteube
f98726377b
Merge branch 'fix_m01400_a3' of https://github.com/matrix/hashcat into matrix-fix_m01400_a3
2016-11-28 10:40:02 +01:00
jsteube
7fb74b2b0d
Merge branch 'fix_m01100_a3' of https://github.com/matrix/hashcat into matrix-fix_m01100_a3
2016-11-28 10:39:53 +01:00
jsteube
eb54f89618
Merge branch 'fix_m01000_a3' of https://github.com/matrix/hashcat into matrix-fix_m01000_a3
2016-11-28 10:39:44 +01:00
jsteube
6e85d10d9d
Merge branch 'fix_m00900_a3' of https://github.com/matrix/hashcat into matrix-fix_m00900_a3
2016-11-28 10:39:36 +01:00
jsteube
e01ab3054b
Merge branch 'fix_m00500' of https://github.com/matrix/hashcat into matrix-fix_m00500
2016-11-28 10:39:28 +01:00
jsteube
bd4bb3e6e1
Merge branch 'fix_m00400' of https://github.com/matrix/hashcat into matrix-fix_m00400
2016-11-28 10:39:24 +01:00
jsteube
d01a88ceb0
Merge branch 'fix_m00300_a3' of https://github.com/matrix/hashcat into matrix-fix_m00300_a3
2016-11-28 10:39:20 +01:00
jsteube
be8a993964
Merge branch 'fix_m00200_a3' of https://github.com/matrix/hashcat into matrix-fix_m00200_a3
2016-11-28 10:39:11 +01:00
jsteube
87ae3b8591
Merge branch 'fix_m00160_a3' of https://github.com/matrix/hashcat into matrix-fix_m00160_a3
2016-11-28 10:39:03 +01:00
jsteube
e68d095b55
Merge branch 'fix_m00160_a1' of https://github.com/matrix/hashcat into matrix-fix_m00160_a1
2016-11-28 10:38:59 +01:00
jsteube
af9801079e
Merge branch 'fix_m00160_a0' of https://github.com/matrix/hashcat into matrix-fix_m00160_a0
2016-11-28 10:38:55 +01:00
jsteube
f04b1bd18b
Merge branch 'fix_m00150_a3' of https://github.com/matrix/hashcat into matrix-fix_m00150_a3
2016-11-28 10:38:51 +01:00
jsteube
86af2c9df8
Merge branch 'fix_m00150_a1' of https://github.com/matrix/hashcat into matrix-fix_m00150_a1
2016-11-28 10:38:47 +01:00
jsteube
0175291610
Merge branch 'fix_m00150_a0' of https://github.com/matrix/hashcat into matrix-fix_m00150_a0
2016-11-28 10:38:44 +01:00
jsteube
3c3da453f5
Merge branch 'fix_m00140_a3' of https://github.com/matrix/hashcat into matrix-fix_m00140_a3
2016-11-28 10:38:40 +01:00
jsteube
1dc5727eeb
Merge branch 'fix_m00130_a3' of https://github.com/matrix/hashcat into matrix-fix_m00130_a3
2016-11-28 10:30:20 +01:00
jsteube
22298f9f9c
Merge branch 'fix_m00120_a3' of https://github.com/matrix/hashcat into matrix-fix_m00120_a3
2016-11-28 10:28:21 +01:00
jsteube
b7aaa76297
Merge branch 'fix_m00110_a3' of https://github.com/matrix/hashcat into matrix-fix_m00110_a3
2016-11-28 10:26:33 +01:00
jsteube
884478fac1
Merge branch 'fix_m00100_a3' of https://github.com/matrix/hashcat into matrix-fix_m00100_a3
2016-11-28 10:24:56 +01:00
Jens Steube
690727a1fa
Merge pull request #873 from matrix/fix_m00060_a3
...
Fix kernel (60 / a3) build warnings (no previous prototypes)
2016-11-28 10:13:24 +01:00
Jens Steube
ac4bd05c5a
Merge pull request #874 from matrix/fix_m00060_a1
...
Fix kernel (60 / a1) build warnings (no previous prototypes)
2016-11-28 10:13:09 +01:00
Jens Steube
1aca786317
Merge pull request #875 from matrix/fix_m00060_a0
...
Fix kernel (60 / a0) build warnings (no previous prototypes)
2016-11-28 10:12:49 +01:00
Jens Steube
b4663afb14
Merge pull request #876 from matrix/fix_m00050_a3
...
Fix kernel (50 / a3) build warnings (no previous prototypes)
2016-11-28 10:12:20 +01:00
Jens Steube
553a88b514
Merge pull request #877 from matrix/fix_m00050_a1
...
Fix kernel (50 / a1) build warnings (no previous prototypes)
2016-11-28 10:11:53 +01:00
Jens Steube
f5da797eae
Merge pull request #878 from matrix/fix_m00050_a0
...
Fix kernel (50 / a0) build warnings (no previous prototypes)
2016-11-28 10:11:30 +01:00
Jens Steube
b7636d6a61
Merge pull request #879 from matrix/fix_m00040_a3
...
Fix kernel (40 / a3) build warnings (no previous prototypes)
2016-11-28 10:10:56 +01:00
Jens Steube
e5301f17ac
Merge pull request #880 from matrix/fix_m00030_a3
...
Fix kernel (30 / a3) build warnings (no previous prototypes)
2016-11-28 10:10:41 +01:00
Jens Steube
e383a1b04c
Merge pull request #881 from matrix/fix_m00020_a3
...
Fix kernel (20 / a3) build warnings (no previous prototypes)
2016-11-28 10:10:26 +01:00
Jens Steube
79834f98c8
Merge pull request #882 from matrix/fix_m00010_a3
...
Fix kernel (10 / a3) build warnings (no previous prototypes)
2016-11-28 10:09:46 +01:00
Jens Steube
4b797488dd
Merge pull request #883 from matrix/fix_m00000_a3
...
Fix kernel (0 / a3) build warnings (no previous prototypes)
2016-11-28 10:09:18 +01:00
Jens Steube
6eced901c7
Merge pull request #884 from matrix/fix_inc_cipher_twofish256
...
Fix kernel (twofish256) build warnings (no previous prototypes)
2016-11-28 10:04:41 +01:00
Jens Steube
5551f41d24
Merge pull request #885 from matrix/fix_inc_cipher_serpent256
...
Fix kernel (serpent256) build warnings (no previous prototypes)
2016-11-28 10:04:34 +01:00
Gabriele Gristina
a684000575
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
eea9bca63f
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
12b0e10357
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
5e28b59bd3
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
49e4ad2c1a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
f78091a180
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
11fa2d72ac
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
92ce3b2ddd
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
d860300dc5
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
23650e03ea
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
809ef24d42
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
8c63e658a8
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
ef49652ea4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
e73dc359aa
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
e53de7eaaa
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
1c52fce318
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
8aab76a9c3
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
451dc7da68
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:36 +01:00
Gabriele Gristina
d0e75de4d7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
7e3768bd6d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
2f75456d9c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
73e2d5cf2b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
cbba23d1da
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
94409fde37
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
6d6b9895ac
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
ffe1b4f86a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
042249c788
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
33604259e4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
2b45b96fea
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
26a9c27eff
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
a8c8dae658
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
de02c42ddd
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
8827f2a47c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
3ba9e365d5
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
16185f3048
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:35 +01:00
Gabriele Gristina
92a3760117
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
25bd7bd543
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
1b4434fa24
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
764feb90cf
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
5f2886258a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
d6c4c61b06
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
a177ca1bf0
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
92df3e6744
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
297a39fb57
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
3bd174b12a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
e0688509c3
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
432423e383
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
5c64803a54
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
e5abfb8adc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
9c8b51ed17
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
6372a90790
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
d5385b1863
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:34 +01:00
Gabriele Gristina
e3724b982b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
50543fecdb
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
df45c72dbb
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
cde9fbdf36
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
371008816a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
90e0a39e40
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
b883ccb92f
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
7c9e88b0ae
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
ece9904fb0
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
93d714f003
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
16cf7ef528
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
ac9e20a9eb
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
0188e3254c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
3553988924
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
708499911b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
3d22937004
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
7cdc4ad3ad
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
426c7d1324
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
05f901111e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:33 +01:00
Gabriele Gristina
abd6dd156d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
9657c9541d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
262aec783d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
2b6f09aebe
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
0433e4650f
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
3b18b4c8a1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
9de0bf2370
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
eaa92bd3f3
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
a56ed42da3
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
9d8042da47
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
3f87f2e121
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
4876cab806
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
cf653d2a68
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
3f06fbb9c7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
bd9b70d4c0
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
5afd85997c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
03ebea90ce
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
7e1ff9ce4d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:32 +01:00
Gabriele Gristina
dd8eed2d2e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
543d85c3f8
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
5eefcc28e4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
7674ee7d58
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
6ad28ffdde
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
dcb08cc3f6
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
4d579e577b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
dab6a87148
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
f80efb4082
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
2ab590a515
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
4336fa5361
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
9a55f95bdc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
2ef08f508a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
59a1e5fea2
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
6343839382
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
fe2f926cc7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
2539bb7bae
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:31 +01:00
Gabriele Gristina
19a1007a04
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
ec4eb91e17
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
392b2c6520
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
39978f46c2
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
38076a93ac
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
c9388294e5
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
871ff5497b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
171365a225
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
f809c71b1b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
432c78e1a4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
18d344ba5b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
ad38ce8e40
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
51c127cf80
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
074f436cf1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
b62b3d94cc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
392af2beb1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
a62c7d1902
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
c122936110
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:30 +01:00
Gabriele Gristina
dc5e19c504
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
abb62de60d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
c7a2f9f026
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
8c030a54fa
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
b346ca948c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
f24c69de6e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
352d2ef51d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
94fa675967
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
20d7daee35
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
da5a75bafe
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
1e353ad2e1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
9e340df8a7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
68494f0e8a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
e01cc231b0
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
0fbd403fba
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
63b247c7cc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
3648182bc6
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:29 +01:00
Gabriele Gristina
2e6fa52994
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
5651b1cf68
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
af97fdba4d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
6b6df3d68a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
f69b42b9da
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
bae7ba4c62
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
76a7dc9299
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
31e70e82c4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
b1bce263bc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
50a4961837
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
884a0c3121
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
a3c71cfb3e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
ccb167b135
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
c14c172103
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
b17ce53757
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
7d5e9010ec
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
c448b275d4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
c2766aa92b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:28 +01:00
Gabriele Gristina
8129081ca4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
487da0229a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
90a65d04e4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
ce6c07ec1d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
e5088590c8
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
639f33a646
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
0a46b3ed3b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
bbf568f155
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
ad87ad7711
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
af49be72ee
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
980b27106d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
02185811cc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
4bbbfb5a79
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
9e9c04752f
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
64121f7be0
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
87930b7669
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
bae6018c81
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
005f2272da
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:27 +01:00
Gabriele Gristina
19a94e2279
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
7622e3d1f3
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
c44acc9538
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
de97bd9bfb
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
a2b98959af
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
505b52d881
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
2a891e31b2
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
441c7c79eb
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
3a9c3383d8
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
ee14d8a34d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
6fa05e38b1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
cdb6bbe76c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
6bd008d33c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
c13e44ccda
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
57400ff8da
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
ac3ee895c1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
122b950ef7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
490a4c1c94
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
86605aa088
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:26 +01:00
Gabriele Gristina
17c08df036
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
3ef04acfcc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
1aad71a11e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
63ef660198
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
c46c5c6d87
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
900d8fdf38
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
f8061465bb
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
2ac7fdcda9
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
397f0b9647
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
a63ae2ea67
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
b4436a0555
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
c5430ecd8e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
07a087307d
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
a2e3afb6c1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
b2bf6f17c2
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
fdb824f45e
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
ac7cb2b5ed
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
40637133c7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
647956c50b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:25 +01:00
Gabriele Gristina
8a82d848aa
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
0bd378a624
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
82e9a41b2c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
5b202f22a8
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
0200d04ce1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
827c7f7ff8
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
b5179ac87b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
fcaf62c0f5
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
0af5f4c260
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
d5ce0f5b88
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
f7ab2e002a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
565a9373ce
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
f4305855a0
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
1349b72fce
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
b83da2998a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
41d26fc855
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
8084a4fa34
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
b27e96e675
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:24 +01:00
Gabriele Gristina
efe8bcee13
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
acda1f49e4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
1ac468b9cd
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
60c3514e0b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
d10a0c3c97
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
c0139965e7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
cdd06466b1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
410a0d3a19
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
0e1fffa197
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
379e087ef9
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
25154e15c6
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
090bc19f0a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
cc0a56c954
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
ecff3d6446
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
da00e698e5
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
3babd4ce8a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
dff1beb564
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
7281d19cb7
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
9a701a222f
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:23 +01:00
Gabriele Gristina
47c6121c4c
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
74c4eda946
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
c9a5e43e66
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
561ae246dc
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
748e4a12f4
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
f4507a8ec2
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
afd72ae237
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
2e41b5587f
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
d9a201f1a9
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
1deea4acf1
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
84c988a71a
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
Gabriele Gristina
1b2b85704b
Fix kernel build warnings (no previous prototypes and/or incompatible function parameters ...
2016-11-27 23:59:22 +01:00
jsteube
da503c897a
Seems to be safe to use bitselect() on NVidia now
2016-11-27 13:47:52 +01:00
Gabriele Gristina
6c7d10604e
Fixed 'Compile Server Error' errors when build 6213/6223/6233/6243 opencl kernels on OSX
2016-11-26 22:38:55 +01:00
jsteube
425031c9c3
Improved SAP CODVN F/G password cracking performance by working around byte endian swaps
2016-11-26 17:17:26 +01:00
jsteube
899413f88b
Allow unroll of Android FDE (Samsung DEK) on NV
2016-11-25 22:24:14 +01:00
jsteube
ac02c60b3f
Do not allow unroll of Drupal7, but for NV only
2016-11-25 22:12:54 +01:00
jsteube
ee2e8ba598
Do not allow unroll of Drupal7, increases performance on CL1.2
2016-11-25 22:09:19 +01:00
jsteube
0de908905f
Allow unroll of PBKDF2-HMAC-SHA256 on NV
2016-11-25 22:04:24 +01:00
jsteube
56154f9f2f
Refactor AES implementation to run fast on CL1.2 as well
2016-11-25 21:40:21 +01:00
jsteube
90f0aec707
Fixed a bug in hash-mode 11600 = (7-Zip) producing clEnqueueReadBuffer(): CL_INVALID_VALUE depending on input hash
2016-11-24 18:13:47 +01:00
Jens Steube
7fe575e204
Add const qualifier to variable declaration of matching global memory objects
2016-11-22 20:20:34 +01:00
jsteube
0206142a69
Bcrypt on NVIDIA works better when unrolled
2016-11-19 18:17:38 +01:00
jsteube
834a6c296b
Do not use a struct for constants in -m 5800 to enable pocl to compile the kernel
2016-11-17 18:31:21 +01:00
Jens Steube
b670e57a5a
Merge pull request #593 from matrix/m10420_osx
...
Fix m10420 OSX build error
2016-11-16 09:52:01 +01:00
Gabriele Gristina
bc11cd29d4
Fix m10420 OSX build error
2016-11-15 19:24:23 +01:00
Jens Steube
aea5892c59
Merge pull request #592 from matrix/m04500_osx
...
Fix m04500 OSX build error
2016-11-15 09:53:27 +01:00
Jens Steube
0db5789b10
Merge pull request #591 from matrix/m04700_osx
...
Fix m04700 OSX build error
2016-11-15 09:53:19 +01:00
Jens Steube
0ec3e356f2
Merge pull request #590 from matrix/m04400_osx
...
Fix m04400 OSX build error
2016-11-15 09:53:13 +01:00
Jens Steube
ce0f806c84
Merge pull request #589 from matrix/m14400_osx
...
Fix m14400 OSX build error
2016-11-15 09:53:05 +01:00
Jens Steube
6784202866
Merge pull request #588 from matrix/m13800_osx
...
Fix m13800 OSX build error
2016-11-15 09:52:59 +01:00
Gabriele Gristina
aa5a0c14b6
Fix m04500 OSX build error
2016-11-15 00:19:17 +01:00
Gabriele Gristina
c735cf746c
Fix m04700 OSX build error
2016-11-15 00:15:32 +01:00
Gabriele Gristina
2ef354fa63
Fix m04400 OSX build error
2016-11-15 00:11:45 +01:00
Gabriele Gristina
bce0e658b9
Fix m14400 OSX build error
2016-11-14 23:54:57 +01:00
Gabriele Gristina
0729c1a172
Fix m13800 OSX build error
2016-11-14 23:49:23 +01:00
Gabriele Gristina
96a03a8f7b
Fix m01100 OSX build error
2016-11-14 23:41:51 +01:00
Jens Steube
badf05adfa
Merge pull request #584 from matrix/master
...
Fix CL_BUILD_PROGRAM_FAILURE on OSX (#412 )
2016-11-14 20:26:04 +01:00
jsteube
d3c130a3ae
Fix typo in array index number
2016-11-14 20:12:44 +01:00
Gabriele Gristina
246336c49c
Fix CL_BUILD_PROGRAM_FAILURE on OSX ( #412 )
2016-11-14 19:28:07 +01:00
jsteube
abd1a7098d
Merge branch 'master' of https://github.com/hashcat/hashcat
2016-11-14 10:50:54 +01:00
jsteube
91a69fa635
Experiment to fix https://github.com/hashcat/hashcat/issues/412
2016-11-14 10:50:47 +01:00
jsteube
5afdf7bf85
Switch to S-boxes making use of a vector conditional select operation for AMD and generic
2016-11-14 02:19:26 +01:00
jsteube
59730fb908
descrypt cracking speed boost on AMD
2016-11-14 01:10:56 +01:00
jsteube
92f7a560a7
Optimize DES/LM cracking speed boost on AMD
2016-11-14 00:56:35 +01:00
jsteube
31a616e00e
Add a shared section in inc_vendor.cl
2016-11-13 20:58:28 +01:00
jsteube
cb6e2107b6
Merge branch 'master' of https://github.com/hashcat/hashcat
2016-11-12 22:31:36 +01:00
jsteube
0c5d32c455
Fix https://github.com/hashcat/hashcat/issues/579
2016-11-12 22:31:20 +01:00
jsteube
306fc8a59a
Optimize unrolling for AMD based on AMDGPU-Pro 16.40
2016-11-12 21:20:03 +01:00
jsteube
ac44087c83
Optimize unrolling for AMD based on AMDGPU-Pro 16.40
2016-11-12 20:23:15 +01:00
jsteube
d081ac2ba1
Fix some uninitialized variables in rp_kernel_on_cpu.c
2016-11-12 16:30:21 +01:00
jsteube
2bda020c83
Added new hash-mode 14400 = SHA1(CX)
...
Details: https://github.com/hashcat/hashcat/issues/554
2016-11-12 11:39:38 +01:00
jsteube
1ed89eb261
Fix rule-engine optimizations for vector datatypes
2016-11-06 12:25:38 +01:00
jsteube
faf6f1932d
Optimize append_block8()
2016-11-05 16:32:59 +01:00
Jens Steube
6fdb2bfca4
Fix some header in inc_common.cl
2016-11-03 20:08:57 +01:00
jsteube
bd12a1eb0d
Optimize rule_op_mangle_dupechar_last()
2016-11-01 14:54:45 +01:00
jsteube
03fde2cdc3
Optimize rule_op_mangle_delete_last()
2016-11-01 14:50:54 +01:00
jsteube
a4f7ba2c60
Optimize rule_op_mangle_rotate_right()
2016-11-01 14:44:35 +01:00
jsteube
9038955bc6
Optimize rule_op_mangle_rotate_left()
2016-11-01 14:35:51 +01:00
jsteube
f3dd6fe741
Some cleanup before going to optimize more code in inc_rp.c
2016-11-01 13:01:15 +01:00
jsteube
ae5109a5a2
Optimize $ (append) rule performance
2016-11-01 03:22:55 +01:00
jsteube
7f234bad24
Optimize 0x01, 0x02 and 0x80 handling in inc_common.c even more
2016-11-01 03:21:45 +01:00
jsteube
492f9f2290
For some easy actions, maxwell GPU prefer not to use switch()
2016-10-31 14:22:00 +01:00
jsteube
8d1809cacb
Fix slow-hash-simd exits in _loop kernels
2016-10-29 13:49:08 +02:00
jsteube
8cfb1f03ab
Workaround to enable use of amd-gpu-pro
2016-10-21 16:02:13 +02:00
jsteube
f58c9baade
Do not unroll -m 6800 based algorithm on NV, latest windows driver can't compile them otherwise
2016-10-21 10:14:15 +02:00
jsteube
a43902b96b
Do not unroll -m 6400 based algorithm on NV, latest windows driver can't compile them otherwise
2016-10-21 09:51:41 +02:00
jsteube
e9b11c2951
Do not unroll scrypt based algorithm on NV, latest windows driver can't compile them otherwise
2016-10-20 22:53:47 +02:00
jsteube
5b26567cb6
Do not unroll -m 10900 based algorithms, it takes ages to compile with latest NV drivers
2016-10-20 11:02:45 +02:00
jsteube
d3d9b4e679
Reduce max. number of allowed function calls per rule from 256 to 32 to save GPU memory
2016-09-22 22:54:20 +02:00
jsteube
f273d4771b
Fix missing pwlen copy in amp_a0
2016-09-16 23:56:05 +02:00
jsteube
30371bef10
Allow words of length > 32 in wordlists for -a 0 for slow hashes if no rules are in use or a : rule is in the rulefile
2016-09-14 17:40:39 +02:00
jsteube
3daf0af480
Added docs/credits.txt
...
Added docs/team.txt
2016-09-11 22:20:15 +02:00
jsteube
4b79ccd416
Preparation for easier integration of:
...
* https://github.com/hashcat/hashcat/pull/485
* https://github.com/hashcat/hashcat/pull/486
2016-09-05 21:47:26 +02:00
jsteube
2216920866
replaced macros with enums and static const char types
...
also had to move COMBINATOR_MODE defenition from inc_hash_constants.h to inc_types.cl to avoid conflicts
based on d57d9245db
2016-09-05 13:52:47 +02:00
jsteube
dc30176993
Fix enum type name
2016-09-02 11:17:20 +02:00
jsteube
200938ca42
Replaced uints with enums types
...
Based on https://github.com/hashcat/hashcat/pull/467
2016-09-02 11:14:02 +02:00
Jens Steube
a267c61fbb
switch from clz() to ffz() for bitsliced algorithms
2016-08-31 13:35:08 +02:00
jsteube
71a8459d85
Two new modes added:
...
* Added new hash-mode 14000 = DES (PT = $salt, key = $pass)
* Added new hash-mode 14100 = 3DES (PT = $salt, key = $pass)
This patch initial was created out of this PR: https://github.com/hashcat/hashcat/pull/452 which is now no longer required
I've replace the -a 3 kernel with a bitsliced version which is around 10 times faster
I've also added test.sh and test.pl patches, but some of the test scripts need to be fixed
2016-08-30 17:44:14 +02:00
jsteube
ebc1f83c93
New SHA2 meet-in-the-middle optimization, reduces 7/64 steps of SHA256 and should also work with SHA224/SHA384/SHA512
2016-08-20 21:42:32 +02:00
jsteube
d7f078cb45
Eventual workaround for https://github.com/hashcat/hashcat/issues/456
2016-08-18 13:11:29 +02:00
Michael Sprecher
602e392b80
Fixed a bug where some kernels used COMPARE_M_SIMD instead of COMPARE_S_SIMD in singlehash mode
2016-08-17 20:23:25 +02:00
Michael Sprecher
7593db9483
Added new hash-mode 13900 = OpenCart
2016-08-02 15:00:58 +02:00
jsteube
8acf5b3879
Add support for @ rule (RULE_OP_MANGLE_PURGECHAR) to use on GPU
2016-07-25 22:54:07 +02:00
jsteube
0154d636bf
Slightly increased NVidias rule-processing performance by using generic instructions instead of byte_perm()
2016-07-25 21:51:04 +02:00
jsteube
5caf32447e
Some experiment. This should increase rule-based cracking on nvidia slightly
2016-07-19 21:07:30 +02:00
Jens Steube
62390b9cfa
Fixed a bug where hashcat reported an invalid password for a zero-length password in LM
...
Fixes https://github.com/hashcat/hashcat/issues/434
2016-07-15 13:30:25 +02:00
jsteube
8702d0e3e1
Workaround memory allocation limit from OpenCL by using multiple buffers for scrypt
2016-06-28 11:03:04 +02:00
jsteube
4ed8977e48
Dynamic tmp_t length for scrypt
2016-06-27 21:28:48 +02:00
Jens Steube
ed1863c263
Move macros DGST_R0 - DGST_R3 to host, define dgst_size for opencl kernel from host; both at runtime
2016-06-26 23:39:42 +02:00
jsteube
0e68b2af25
Don't use device_processor_cores for scrypt
2016-06-26 22:59:52 +02:00
Jens Steube
8298cd4926
Drop -m 190, no reason to keep it
2016-06-23 18:20:55 +02:00
jsteube
e4f2002e53
Add missing -m 2000 kernels
2016-06-19 14:37:47 +02:00
jsteube
5542e46022
Added option --stdout to print candidates instead of trying to crack a hash
2016-06-14 21:49:33 +02:00
Jens Steube
3022abf956
some axcrypt fixes
2016-06-11 23:08:33 +02:00
jsteube
58296e1ecf
Fix a bug in -m 1500, returned invalid plain is cracking slice was not 0
2016-06-10 17:48:04 +02:00
jsteube
b9eefd9b20
Added new hash-mode 13800 = Windows 8+ phone PIN/Password
2016-06-10 09:46:41 +02:00
Jens Steube
fc1be6bb85
Fix issue #150
2016-06-06 00:32:03 +02:00
jsteube
04dfe6e89e
Fix -m 12500 by limiting max. length to 20; Limit fake rule copy in autotune() to it's max size
2016-06-01 22:56:33 +02:00
jsteube
2213786618
Increase Domain Cached Credentials (DCC), MS Cache cracking performance
2016-05-28 15:36:04 +02:00
jsteube
333ca26f21
Increase Oracle T: Type (Oracle 12+) cracking performance
2016-05-28 13:02:21 +02:00
jsteube
a720195686
Increase AIX {ssha512} cracking performance
...
Remove unrolling for 7100, 7200, 12100 and 8200: High-End GPUs didn't like it
2016-05-28 12:30:39 +02:00
jsteube
072988f26c
Increase PBKDF2-HMAC-SHA512 cracking performance
2016-05-28 00:25:41 +02:00
jsteube
2ec7429dea
Increase 1Password, cloudkeychain cracking performance
2016-05-27 23:59:52 +02:00
jsteube
e279e0c2b3
Improve GOST R 34.11-2012 (Streebog) speed
2016-05-26 19:47:01 +02:00
jsteube
f843c6a4d0
Improve Lotus Notes/Domino 5 performance
2016-05-26 19:30:09 +02:00
jsteube
dfc9a5ff61
Improve Lotus Notes/Domino 6 performance
2016-05-26 18:59:36 +02:00
jsteube
2dd8156d24
Introduce a true memset kernel, currently operates on 16 byte per item
2016-05-26 16:45:52 +02:00
Jens Steube
2899f53a15
Move files from include/ to OpenCL/ if they are used within kernels
...
Rename includes in OpenCL so that it's easier to recognize them as such
2016-05-25 23:04:26 +02:00
jsteube
c4333c4025
Get SHA256 KDF for VeraCrypt to work
2016-05-21 21:23:22 +02:00
jsteube
763fd6e18b
Merge branch 'master' of https://github.com/hashcat/oclHashcat
2016-05-21 11:00:16 +02:00
jsteube
df3f4a439a
We can safely replace atomic_add() with atomic_inc()
2016-05-21 10:58:58 +02:00
Jens Steube
c6c865e32e
Some final fixes for d_return_buf refactorization; Initial kernels vor veracrypts SHA256 KDF (not working)
2016-05-21 00:39:22 +02:00
jsteube
f2598025c6
Some fixes for rare kernels
2016-05-20 19:05:54 +02:00
Jens Steube
37953cdc8f
Optimize handling of cracked hashes, was a bottleneck if too many at once
2016-05-20 18:24:33 +02:00
Jens Steube
d37b6c6c30
Prepare for VeraCrypt integration
2016-05-19 20:53:17 +02:00
Jens Steube
247d193146
Get rid of some JIT compiler warnings
2016-05-18 11:18:31 +02:00
Jens Steube
9e92c9c4d9
Fix types_ocl.c to solve issue https://github.com/hashcat/oclHashcat/issues/344
2016-05-18 09:35:51 +02:00
Jens Steube
de2074dfaa
Fix for -m 2500, see: https://github.com/hashcat/oclHashcat/issues/339
2016-05-17 18:21:37 +02:00
jsteube
b5cb29ad1c
Minimal psafe2 increase and autotune fix
2016-05-16 21:30:21 +02:00
jsteube
e46aa7103a
Fix some macros for NV
2016-05-16 20:30:39 +02:00
jsteube
eea3424c38
Added SIMD code for all generic PBKDF2-HMAC-* modes
2016-05-15 19:54:56 +02:00
Jens Steube
5987029441
Added SIMD code for DCC2
2016-05-15 01:13:09 +02:00
Jens Steube
0ddb264a5a
Use packv() and unpackv() for slow hash SIMD handling in kernels
2016-05-15 00:37:46 +02:00
Jens Steube
9d74f2958d
Added SIMD code for WPA/WPA2
2016-05-14 19:45:51 +02:00
Jens Steube
0891989404
Fix WinZip multihash
2016-05-12 13:05:12 +02:00
Jens Steube
7a4ab2b42d
Prepare for WinZip integration
2016-05-12 09:26:54 +02:00
jsteube
e47030ed7d
Prepare to rename project into hashcat
...
This release markes the fusion of "hashcat" and "oclHashcat" into "hashcat".
It combines all features of all hashcat projects in one project.
2016-05-10 19:07:07 +02:00
jsteube
c19779dedf
Switch back -m 7400 to old version
2016-05-09 23:35:25 +02:00
jsteube
9390be8594
Use real registers for salt, high-end maxwells didn't like it with global memory access
2016-05-09 23:07:23 +02:00
jsteube
373d2b9882
Remove barrier from DCC1, high-end maxwells didn't like it
2016-05-09 21:51:36 +02:00
jsteube
c79bed3b7d
Prepare for a more dynamic #pragma unroll use
2016-05-09 21:32:12 +02:00
jsteube
34c3557d50
Fix compiler warnings
2016-05-09 19:23:37 +02:00
Jens Steube
941e016378
Fix -m 9000 performance for AMD
2016-05-09 09:40:57 +02:00
jsteube
a0221cd368
Fix broken -m 1500 and -m 3000
2016-05-09 09:17:59 +02:00
jsteube
6dac6b409e
Add compiler kernel hints for algorithms with fixed workgroup size
2016-05-09 00:58:04 +02:00
jsteube
71c31fca59
Rewrote sha256crypt from scratch
2016-05-08 22:56:36 +02:00
jsteube
fd77a098c5
Another some unroll to reduce register pressure
2016-05-08 18:57:44 +02:00
jsteube
bd1f555c9c
Remove some unroll to reduce register pressure
2016-05-08 18:29:54 +02:00
jsteube
303cfcae15
Enable unrolling of SHA512 with HMAC on NV
2016-05-08 16:07:40 +02:00
Jens Steube
7f04a89f77
Optimize out the swap32() of sha256 in 7zip
2016-05-08 15:33:32 +02:00
jsteube
16af77af18
Extended password length up to 32 for 7zip
2016-05-08 14:39:44 +02:00
jsteube
6d027e77f2
Optimize some macros
...
Use rotate() instead of inline asm; breaks Titan speed
2016-05-08 11:09:44 +02:00
jsteube
89dcaeb76d
Replace SHL+ADD with MAD
2016-05-07 23:51:37 +02:00
jsteube
8141c7fb60
Little bit inline assembly for the older nvidia cards
2016-05-07 20:45:16 +02:00
jsteube
006f5252b7
Optimize a few modes for hashcat_tuning.hctab for budget NV cards
...
Little experiment with MD4 based optimizations on -m 900 -m 1000 and -m 1100
Fix benchmark in case user fixes -u and -n values
2016-05-07 13:15:21 +02:00
Jens Steube
c40bf412e5
Fix -m 8500: volatile no longer required
2016-05-06 11:44:28 +02:00
Jens Steube
72e3821a4c
Simplify auto-tuning and benchmark routines
...
Decrease the time it takes to run a benchmark
Removed --benchmark-repeat, it creates no advantage
Fix some wording related to drivers
Dropped special 64-bit rotate() handling for NV
Cleanup SHA384
Cleanup try_run()
2016-05-05 23:21:15 +02:00
Jens Steube
8316210233
Unlock kernel_threads > 64
2016-05-04 00:52:53 +02:00
jsteube
dbe2d96618
Fix -m 1500 multihash and benchmark
...
Fix -m 3000 multihash and benchmark
Fix -m 3100 multihash and benchmark
Fix -m 7700 multihash and benchmark
Fix -m 8500 multihash and benchmark
Fix -m 11500 multihash and benchmark
2016-05-03 10:57:23 +02:00
jsteube
c7b67376a8
Fix -m 200 multihash and benchmark
2016-05-03 10:39:09 +02:00
jsteube
518fcb387a
Fix -m 10100 multihash and benchmark
2016-05-03 10:23:32 +02:00
jsteube
c0a38846e3
Fix -m 5100 multihash and benchmark
2016-05-03 10:14:53 +02:00
Jens Steube
0b3743ce94
- Added inline declaration to functions from simd.c, common.c, rp.c and types_ocl.c to increase performance
...
- Dropped static declaration from functions in all kernel to achieve OpenCL 1.1 compatibility
- Added -cl-std=CL1.1 to all kernel build options
- Created environment variable to inform NVidia OpenCL runtime to not create its own kernel cache
- Created environment variable to inform pocl OpenCL runtime to not create its own kernel cache
2016-05-01 23:15:26 +02:00