HomeSort by: relevance | last modified time | path
    Searched defs:blockhash_bytes (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2-core.c 206 uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; local
207 store_block(blockhash_bytes, &blockhash);
208 blake2b_long(context->out, context->outlen, blockhash_bytes,
212 sodium_memzero(blockhash_bytes,
213 ARGON2_BLOCK_SIZE); /* clear blockhash_bytes */
373 uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; local
377 blake2b_long(blockhash_bytes, ARGON2_BLOCK_SIZE, blockhash,
380 blockhash_bytes);
383 blake2b_long(blockhash_bytes, ARGON2_BLOCK_SIZE, blockhash,
386 blockhash_bytes);
    [all...]
  /src/external/apache2/argon2/dist/phc-winner-argon2/src/
core.c 175 uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; local
176 store_block(blockhash_bytes, &blockhash);
177 blake2b_long(context->out, context->outlen, blockhash_bytes,
179 /* clear blockhash and blockhash_bytes */
181 clear_internal_memory(blockhash_bytes, ARGON2_BLOCK_SIZE);
523 uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; local
528 blake2b_long(blockhash_bytes, ARGON2_BLOCK_SIZE, blockhash,
531 blockhash_bytes);
534 blake2b_long(blockhash_bytes, ARGON2_BLOCK_SIZE, blockhash,
537 blockhash_bytes);
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/implementations/kdfs/
argon2.c 347 uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; local
356 blake2b_long(ctx->md, ctx->mac, blockhash_bytes, ARGON2_BLOCK_SIZE,
359 blockhash_bytes);
361 blake2b_long(ctx->md, ctx->mac, blockhash_bytes, ARGON2_BLOCK_SIZE,
364 blockhash_bytes);
366 OPENSSL_cleanse(blockhash_bytes, ARGON2_BLOCK_SIZE);
753 uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; local
769 store_block(blockhash_bytes, &blockhash);
770 blake2b_long(ctx->md, ctx->mac, out, ctx->outlen, blockhash_bytes,
773 OPENSSL_cleanse(blockhash_bytes, ARGON2_BLOCK_SIZE)
    [all...]

Completed in 16 milliseconds