10-01-2018, 11:42 AM
Hello Everybody
Sorry if I post here the question and it is the wrong place. I´m new here and new with hashcat.
I´m development my own application and I´m using rfc2898DeriveBytes with .net.
I would like to know if hashcat can be used to testing penetration with rfc2898DeriveBytes, Because I´m using 4096 iterations and 24 Length
If it can be done, what it is the correct Algorithms?
How can I pass the iterations?
Thank you very much for your time
Regards
Sorry if I post here the question and it is the wrong place. I´m new here and new with hashcat.
I´m development my own application and I´m using rfc2898DeriveBytes with .net.
I would like to know if hashcat can be used to testing penetration with rfc2898DeriveBytes, Because I´m using 4096 iterations and 24 Length
Code:
Rfc2898DeriveBytes(pass, salt, iterations)
return rfc2898DeriveBytes.GetBytes(24);
private byte[] CreateHash(string password, byte[] salt, long iterations)
{
byte[] hash;
using (var hashGenerator = new Rfc2898DeriveBytes(pass, salt, (int)iterations))
{
hash = hashGenerator.GetBytes(_byteLength);
}
return hash;
}
If it can be done, what it is the correct Algorithms?
How can I pass the iterations?
Thank you very much for your time
Regards