I'm in a Drupal 8 mysql database (part of a lab so not illegally) and the password hash seems to be truncated in the users_field_data database. I've never quite seen this, and any searches I can find don't seem to tell me anything. I'm not sure how Drupal would ever verify the password if it doesn't have the full hash?
The hash I'm getting back looks something like this: $S$E6GCf39Fu376XcvVHzroZhuiOp3jRURyhDwOMzGfT22X3b..X4ed
I tried changing the column size from varchar 55 to varchar 100 and nothing happened. I'm retrieving the password hash using the following statement:
SELECT pass FROM users_field_data;
Is there something I'm missing that is preventing me from pulling the full hash?