unable to crack scrypt digest - 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: unable to crack scrypt digest (/thread-5352.html) |
unable to crack scrypt digest - dominator_sd - 03-27-2016 Hi, I am trying to crack scrypt digests. I am creating my own digests using the python library pyscrypt for that. the python script: b64encode(pyscrypt.hash(password="hashcat", salt="salt", N=1024,r=1,p=1,dkLen=32)) which gives: 'oDLxfd3z2gOBjdQMAy9M+uSzGiLwOlNwmSgLSihkgm8=' my cudaHashcat command on my windows machine is: cudaHashcat64.exe -m8900 SCRYPT:1024:1:1:salt:oDLxfd3z2gOBjdQMAy9M+uSzGiLwOlNwmSgLSihkgm8= rockyou.t xt result: the crack is exhausted even though I have added 'hashcat' to the rockyou.txt dictionary P.S. I was able to successfully crack the SCRYPT example shown on the hashcat hash examples page Could some one please tell me why my digest don't crack RE: unable to crack scrypt digest - Xanadrel - 03-27-2016 Code: SCRYPT:1024:1:1:c2FsdA==:oDLxfd3z2gOBjdQMAy9M+uSzGiLwOlNwmSgLSihkgm8=:hashcat Base 64 encode the salt... RE: unable to crack scrypt digest - dominator_sd - 03-27-2016 (03-27-2016, 01:39 PM)Xanadrel Wrote: Base 64 encode the salt... thanks a ton. That worked. Rookie mistake |