Edit

IABSD.fr/src/sys/lib

Branch :

  • Show log

    Commit

  • Author : millert
    Date : 2020-07-09 19:17:19
    Hash : 04a2240b
    Message : Fix a warning false positive from clang 10. blf_enc() takes a number of 64-bit blocks to encrypt, but using sizeof(uint64_t) in the calculation triggers a warning from clang 10 because the actual data type is uint32_t. Pass BCRYPT_WORDS / 2 for the number of blocks like libc bcrypt(3) does. OK kettenis@