Re: Vibe.d Password Verification

2025-02-11 Thread Kagamin via Digitalmars-d-learn
uint32_t is from stdint.h, which id is `import core.stdc.stdint;`

Re: Vibe.d Password Verification

2025-02-08 Thread Matthew via Digitalmars-d-learn
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

Re: Vibe.d Password Verification

2025-02-06 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
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

Re: Vibe.d Password Verification

2025-02-05 Thread Adam Wilson via Digitalmars-d-learn
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

Re: Vibe.d Password Verification

2025-02-05 Thread Jonathan M Davis via Digitalmars-d-learn
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:

Re: Vibe.d Password Verification

2025-02-05 Thread Sergey via Digitalmars-d-learn
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