Displaying 2 results from an estimated 2 matches for "simplepassword".
2020 Aug 29
2
PBKDF2 password hashing as in ASP.NET Core
...The result is base64-encoded. Prf is an enum
value, describing the HMAC SHA-256. Subkey is the hash value part.
I might find a way to convert .NET's format into what Dovecot
understands. The hmac is SHA-256, the rounds is 10000. But I wasn't able
to get it working.
My test password is: simplepassword
The .NET hash:
AQAAAAEAACcQAAAAEG0Anzb9vKOqsAKxLyhXedCTJoHrP381hKiKBHuPHhMdkjqW8Bks8RFOQZLssJ2grQ==
The converted hash for Dovecot:
$1$bQCfNv28o6qwArEvKFd50A==$10000$kyaB6z9/NYSoigR7jx4THZI6lvAZLPERTkGS7LCdoK0=
I've also found the source code in Dovecot that should verify the hash
[6]. It g...
2020 Aug 30
0
PBKDF2 password hashing as in ASP.NET Core
...s an enum
> value, describing the HMAC SHA-256. Subkey is the hash value part.
>
> I might find a way to convert .NET's format into what Dovecot
> understands. The hmac is SHA-256, the rounds is 10000. But I wasn't able
> to get it working.
>
> My test password is: simplepassword
> The .NET hash:
> AQAAAAEAACcQAAAAEG0Anzb9vKOqsAKxLyhXedCTJoHrP381hKiKBHuPHhMdkjqW8Bks8RFOQZLssJ2grQ==
> The converted hash for Dovecot:
> $1$bQCfNv28o6qwArEvKFd50A==$10000$kyaB6z9/NYSoigR7jx4THZI6lvAZLPERTkGS7LCdoK0=
>
> I've also found the source code in Dovecot that sho...