change hash type
#11
you can use the program "mkpasswd". Alternatively here is a hash for password "hashcat": $2a$05$LhayLxezLhK1LhWvKxCyLOj0j1u.Kj0jZ0pEmm134uzrQlFvQJLF6
#12
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.
#13
(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
#14
(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.
#15
why cracking bcrypt is very slow? it is more than generate hash then compare?
#16
bcrypt is slow because it performs thousands of small-but-frequent pseudorandom memory reads and writes. thus the algorithm is very expensive.
#17
i understand now, thank for your explanation.