uint32_t is from stdint.h, which id is `import core.stdc.stdint;`
On Wednesday, 5 February 2025 at 15:16:10 UTC, seany wrote:
Is there any built in passowrd verification for Vibe.d? Such as
bcrypt.verifypassword(password , hash)?
...
Thank you.
I would agree with Jonathan and use a C library. I was just
looking for a password solution myself also for a vibe
On Wednesday, 5 February 2025 at 15:16:10 UTC, seany wrote:
Is there any built in passowrd verification for Vibe.d? Such as
bcrypt.verifypassword(password , hash)?
I looked at this library: https://code.dlang.org/packages/passwd
This is causing linking error ( ld: error: unable to find
library
On Wednesday, 5 February 2025 at 15:16:10 UTC, seany wrote:
Is there any built in passowrd verification for Vibe.d? Such as
bcrypt.verifypassword(password , hash)?
I looked at this library: https://code.dlang.org/packages/passwd
This is causing linking error ( ld: error: unable to find
library
On Wednesday, February 5, 2025 8:16:10 AM MST seany via Digitalmars-d-learn
wrote:
> Is there any built in passowrd verification for Vibe.d? Such as
> bcrypt.verifypassword(password , hash)?
>
> I looked at this library: https://code.dlang.org/packages/passwd
> This is causing linking error ( ld:
On Wednesday, 5 February 2025 at 15:16:10 UTC, seany wrote:
Any help would be appreciated. My password is being sent as
string over a secure https connection. The hash is stored as
another string.
There are also these 2:
https://code.dlang.org/packages/dauth
https://code.dlang.org/packages/a