xcrypt
encrypted_password = xcrypt(password, salt);
char *xcrypt(const char *password, const char *salt);
result = (strcmp(xcrypt(password, salt), pw_password) == 0);