Changes between Initial Version and Version 1 of Ticket #12365, comment 6
- Timestamp:
- Jan 14, 2017, 8:07:35 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12365, comment 6
initial v1 7 7 then crypt() will apply the scrypt KDF function using the first 8 8 parameter as log2(N) (defaults to 14, requiring 16 MB of RAM), 9 and the second parameter as a 32-b itsalt.9 and the second parameter as a 32-byte salt. 10 10 11 11 It will return a string in the format "$s$%2u$%64s$64s", appending 12 12 the 32-bit scrypt output to the end of the salt. 13 13 14 This patch additionally tweaks passwd and screen_blanker .14 This patch additionally tweaks passwd and screen_blanker, and fixes #4812 in my tests. 15 15 16 16 Issues with this patch: … … 18 18 * Ideally the insecure_memzero would be a systemwide bzero_explicit 19 19 or memset_s something. 20 * Hex conversion functions should probably be shared. Possibly 21 split into a separate patch? 20 22 * It's big. I can break it down if desired.