Changes between Initial Version and Version 1 of Ticket #34661, comment 8
- Timestamp:
- Jun 17, 2023, 6:53:11 AM (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34661, comment 8
initial v1 6 6 7 7 def encode(self, password, salt, iterations=None): 8 assert password is not None9 assert salt and '$' not in salt10 8 iterations = iterations or self.iterations 11 9 hash = pbkdf2(password, salt, iterations, digest=self.digest)