hashcat Forum
change hash type - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html)
+--- Thread: change hash type (/thread-3609.html)

Pages: 1 2


RE: change hash type - undeath - 08-13-2014

you can use the program "mkpasswd". Alternatively here is a hash for password "hashcat": $2a$05$LhayLxezLhK1LhWvKxCyLOj0j1u.Kj0jZ0pEmm134uzrQlFvQJLF6


RE: change hash type - leviathan - 08-13-2014

ok thank you, i will try to do this, i will post the result.
i've wanted to try hashcat to see the potential of the software.


RE: change hash type - assilum - 08-16-2014

(08-13-2014, 09:07 AM)epixoip Wrote: your cpu is likely much faster than your gpu is on bcrypt so you're probably using the wrong tool.

Hello,

I am interesting in this.
How can you compare CPU and GPU performances ?

I would like to compare :
Intel(R) Core(TM) i7-2820QM and NVidia Quadro 2000M, 2047MB, 1100Mhz, 4MCU


RE: change hash type - undeath - 08-16-2014

(08-16-2014, 10:23 AM)assilum Wrote: How can you compare CPU and GPU performances ?

this solely depends on the PSA used. The more memory access a PSA needs to calculate, the slower it gets on a GPU while it does not affect a CPU performance that much.


RE: change hash type - ewwink - 08-26-2014

why cracking bcrypt is very slow? it is more than generate hash then compare?


RE: change hash type - epixoip - 08-26-2014

bcrypt is slow because it performs thousands of small-but-frequent pseudorandom memory reads and writes. thus the algorithm is very expensive.


RE: change hash type - ewwink - 08-26-2014

i understand now, thank for your explanation.