rfc2898DeriveBytes
#1
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


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


Messages In This Thread
rfc2898DeriveBytes - by quiya - 10-01-2018, 11:42 AM
RE: rfc2898DeriveBytes - by undeath - 10-01-2018, 11:51 AM
RE: rfc2898DeriveBytes - by quiya - 10-01-2018, 12:11 PM
RE: rfc2898DeriveBytes - by undeath - 10-01-2018, 01:38 PM
RE: rfc2898DeriveBytes - by quiya - 10-01-2018, 01:49 PM