mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-16 04:49:24 +00:00
a5be8a75ed
OpenCL. Closes #226.
57 lines
1.0 KiB
Markdown
57 lines
1.0 KiB
Markdown
oclHashcat build documentation
|
|
=
|
|
# Revision:
|
|
* 1.3
|
|
|
|
# Authors:
|
|
* Gabriele Gristina <<matrix@hashcat.net>>
|
|
* Christoph Heuwieser <<dropdead@hashcat.net>>
|
|
* magnum <<john.magnum@hushmail.com>>
|
|
|
|
# Building oclHashcat for Linux and OSX
|
|
|
|
Get a copy of the **oclHashcat** repository
|
|
|
|
```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
|
|
```
|
|
|
|
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
|
|
```
|
|
=
|
|
Enjoy your fresh **oclHashcat** binaries ;)
|