When creating your own hasher, you need to override algorithm, verify(), encode() and safe_summary(). PasswordHasher objects are immutable.
The result is a dictionary and should contain `algorithm`, `hash`, and `salt`. Extra keys can be algorithm specific like `iterations` or `work_factor`.
This method is overriden in:
The result is normally formatted as "algorithm$salt$hash" and must be fewer than 128 characters.
This method is overriden in:
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 is overriden in:
The result is a dictionary and will be used where the password field must be displayed to construct a safe representation of the password.
This method is overriden in:
This method is overriden in: