Changes between Initial Version and Version 1 of Ticket #12365, comment 6


Ignore:
Timestamp:
Jan 14, 2017, 8:07:35 PM (7 years ago)
Author:
i80and

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12365, comment 6

    initial v1  
    77  then crypt() will apply the scrypt KDF function using the first
    88  parameter as log2(N) (defaults to 14, requiring 16 MB of RAM),
    9   and the second parameter as a 32-bit salt.
     9  and the second parameter as a 32-byte salt.
    1010
    1111  It will return a string in the format "$s$%2u$%64s$64s", appending
    1212  the 32-bit scrypt output to the end of the salt.
    1313
    14 This patch additionally tweaks passwd and screen_blanker.
     14This patch additionally tweaks passwd and screen_blanker, and fixes #4812 in my tests.
    1515
    1616Issues with this patch:
     
    1818* Ideally the insecure_memzero would be a systemwide bzero_explicit
    1919  or memset_s something.
     20* Hex conversion functions should probably be shared. Possibly
     21  split into a separate patch?
    2022* It's big. I can break it down if desired.