Displaying 2 results from an estimated 2 matches for "nysoigr7jx4thzi6lvazlpertkgs7lcdok0".
2020 Aug 29
2
PBKDF2 password hashing as in ASP.NET Core
...s. 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 gives some more hints about the expected format that are sadly
missing from the documentation, making it almost useless. I also tried
with the "{PBKDF2}" prefix, with the base64 padding "=" r...
2020 Aug 30
0
PBKDF2 password hashing as in ASP.NET Core
...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 gives some more hints about the expected format that are sadly
> missing from the documentation, making it almost useless. I also tried
> with the "{PBKDF2}" prefix, with the base6...