This class is implemented because Django used to accept such password hashes. Some older Django installs still have these values lingering around so we need to handle and upgrade them properly.
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.