You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/docs/BUILD.md

1.5 KiB

oclHashcat build documentation

Revision:

  • 1.1

Authors:

Dependencies

To compile oclHashcat the following third party libraries are required:

The next thing to do is download all the third party libraries listed above and put these files into the deps/tmp directory.

The following files are needed inside the deps/tmp directory:

ADL_SDK8.zip
R352-developer.zip
gdk_linux_amd64_352_55_release.run

Building oclHashcat

First get a copy of oclHashcat repository

$ git clone https://github.com/hashcat/oclHashcat.git

Install the dependencies

$ cd oclHashcat
$ sudo ./tools/deps.sh

Run "make"

$ make

to install it run "make install"

$ make install

Useful tricks:

  • build all binaries (see Note1):
$ make binaries

Note1: to install all binaries ("make binaries") you need to first clone the OpenCL-Headers within the main folder:

$ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL

the tools/deps.sh script does not clone this repo automatically since for native compilation it is not needed.

= Enjoy your fresh oclHashcat binaries ;)