Searched refs:_hashsz (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/ |
D | fastpbkdf2.c | 101 #define DECL_PBKDF2(_name, _blocksz, _hashsz, _ctx, \ argument 122 nkey = _hashsz; \ 159 uint8_t out[_hashsz]) \ 162 _update(&ctx->outer, out, _hashsz); \ 179 md_pad(Ublock, _blocksz, _hashsz, _blocksz + _hashsz); \ 223 uint32_t blocks_needed = (uint32_t)(nout + _hashsz - 1) / _hashsz; \ 227 uint8_t block[_hashsz]; \ 230 size_t offset = (counter - 1) * _hashsz; \ 231 size_t taken = MIN(nout - offset, _hashsz); \
|