The crypt module is not supported on all platforms.
This method overrides django.contrib.auth.hashers.BasePasswordHasher.harden_runtime.
Taking PBKDF2 as an example, if `encoded` contains 20000 iterations and `self.iterations` is 30000, this method should run password through another 10000 iterations of PBKDF2. Similar approaches should exist for any hasher that has a work factor. If not, this method should be defined as a no-op to silence the warning.
This method overrides django.contrib.auth.hashers.BasePasswordHasher.safe_summary.
The result is a dictionary and will be used where the password field must be displayed to construct a safe representation of the password.