When I try to use an invalid email address in the login form, the app crashes saying: Cannot read properties of undefined (reading 'password'). You c ...
When I try to use an invalid email address in the login form, the app crashes saying: Cannot read properties of undefined (reading 'password'). You c ...
I have read other post in StackOverflow about Bcrypt compare method returning false always. But I can not solve mine with the suggested answers. I am ...
I'm creating an admin panel where user can register, login and update his information. While registering user information, I used bcrypt library to en ...
This is a repost, as my last one was too much, so I'm going to make it simple. On the second call to BCryptDecrypt(), it fails returning 0xc000000d. ...
Problem: I am unable to get bcrypt.compare(plainText, hashedPassword) to return true when the plain text password is the same as the ones used to cre ...
I have a UserController that receives a UserDTO and creates/updates the user in the DB. The problem I'm getting is that I also have a login, and when ...
I encrypt password through bcrypt but when i check hashed password in console.log it is different from the hashed password that will store in database ...
I'm trying to implement Bcrypt to hash passwords. But the issue I'm facing is that Spring Security enables authentication for all end points by defaul ...
I'm new in Java/Spring boot and I'm doing a login with jwt. What happens is that I got well to the part of creating users, the issue is that when I w ...
note: This error originates from a subprocess, and is likely not a problem with pip. error: legacy-install-failure × Encountered error while trying t ...
I'm fairly new to nodejs and I'm struggling with this bcrypt error right now. When I use postman to send the post request(raw-data) it works without a ...
I was trying to setting up a single registration page in a react component but I wanted to hash the password before sending the response to my back-en ...
Hi i have problems with comparing two passwords. it gives me this error : TypeError: Cannot read properties of undefined (reading 'getPassword'). i th ...
This code works without errors, but if i change the c-style cast to static_cast I get the error Invalid conversion DWORD is a unsigned long ...
I am trying to create a login end point and sending auth token but when i am sending request for creating user it works fine but when i send request f ...
This code should get the key from the password, but at this stage of generating this key, I get an error STATUS_INVALID_PARAMETER. Why is this happe ...
I have an app in vb.net and I want to store a password in my database that is understandable from PHP. The creation in PHP is like this: $hash = pass ...
I am trying to compare the username and password for may auth. then i think everything is good at my code but it throws me an error if the username an ...
So i need to create a post request that gets login data(name, email, password) from the user, runs validations, encrypts password, then stores data. T ...
I had a FastAPI app that had been using Passlib's bcrypt module to hash passwords. Here's an example string that is stored in the database as a passwo ...