LoginRadius / csharp-password-hash

.NET standard library to secure the passwords using multiple hashing algorithms.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Password hash encoding type 'hex' should be added separately

anilswm opened this issue · comments

We are providing these Encoding Types
public enum EncodingType
{
Default = 0,
Base64 = 1,
UTF8 = 2
}

For 'Default ', we are converting password hash into a 'hex' value. There should an explicit encoding type also for this. So we need to add one more type 'hex'. The logic for 'Default' will be the same.

Hi, what do you mean? Can you be more specific, thank you

Hi @jz543fm , I have updated the description for this.