Thank you veryvery
--
You received this message because you are subscribed to the Google Groups
"Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-rest-framework+unsubscr...@googlegroups.com.
For more options, visit https://g
Hi,
> Le 15 mars 2017 à 08:06, CocaCola a écrit :
>
> Even if there is no security problem..
> The hashed password is meaningless value.
> Why is it showing a hashed password?
This is the expected behavior.
For one thing, it’s a security issue to store passwords clear in the DB.
"ID": "sol13",
"password": "inputed password" (or Null..)
}
## Actual behavior
but
{
"ID": "sol13",
"password":
"pbkdf2_sha256$3$irJGEMqdM7Z2$fvyAw63kC2SQ3qKJ+RZ8MAGxbjhBThTQvyYldrBRguw="
}
Even i