HomeSort by: relevance | last modified time | path
    Searched refs:ARGON2_SYNC_POINTS (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2.c 47 if (memory_blocks < 2 * ARGON2_SYNC_POINTS * context->lanes) {
48 memory_blocks = 2 * ARGON2_SYNC_POINTS * context->lanes;
51 segment_length = memory_blocks / (context->lanes * ARGON2_SYNC_POINTS);
53 memory_blocks = segment_length * (context->lanes * ARGON2_SYNC_POINTS);
60 instance.lane_length = segment_length * ARGON2_SYNC_POINTS;
argon2.h 32 #define ARGON2_SYNC_POINTS UINT32_C(4)
39 #define ARGON2_MIN_MEMORY (2 * ARGON2_SYNC_POINTS) /* 2 blocks per slice */
argon2-core.h 199 start_position = (position->slice == ARGON2_SYNC_POINTS - 1)
argon2-fill-block-avx2.c 162 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) {
argon2-fill-block-avx512f.c 167 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) {
argon2-fill-block-ref.c 160 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) {
argon2-fill-block-ssse3.c 161 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) {
argon2-core.c 232 for (s = 0; s < ARGON2_SYNC_POINTS; ++s) {

Completed in 13 milliseconds