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

56 lines
1011 B

9 years ago
oclHashcat build documentation
=
# Revision:
* 1.3
9 years ago
# Authors:
* Gabriele Gristina <<matrix@hashcat.net>>
* Christoph Heuwieser <<dropdead@hashcat.net>>
# Building oclHashcat for Linux and OSX
9 years ago
Get a copy of the **oclHashcat** repository
9 years ago
```sh
$ git clone https://github.com/hashcat/oclHashcat.git
```
Run "make"
```sh
$ make
```
# Install oclHashcat for Linux
The install target is linux FHS compatible and can be used like this:
```sh
$ make install
9 years ago
```
If you install it, cached kernels, session files, restore- and pot-files etc. will go to $HOME/.hashcat/
# Building oclHashcat for Windows
Get a copy of the **oclHashcat** repository
```sh
$ git clone https://github.com/hashcat/oclHashcat.git
```
Basically all you need is the OpenCL Headers.
Simply clone into the reference Implementation:
```sh
$ mkdir -p deps/OpenCL-Headers
$ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL
```
```sh
$ make win32 win64
```
9 years ago
=
Enjoy your fresh **oclHashcat** binaries ;)