Pwconv
pwconv is a Unix-like utility that converts systems from storing password hashes in /etc/passwd to using a separate shadow password file, /etc/shadow. The conversion enhances security by restricting access to password hashes to privileged processes and users. After the conversion, the password field in each /etc/passwd entry is replaced with a placeholder (commonly x), while the corresponding hash is moved to /etc/shadow with restrictive permissions.
Pwconv is part of the shadow password utilities, typically provided by the shadow (or related loginutils) package
Reverting a conversion is possible with the companion utility pwunconv, which restores password hashes to /etc/passwd
Security and compatibility notes: shadow password schemes reduce exposure of password hashes by improving access controls
See also: /etc/passwd, /etc/shadow, pwunconv, shadow passwords, PAM, /etc/gshadow.