Lines Matching refs:vtmp
57 unsigned char vtmp[HASH_PRNG_MAX_SEEDLEN]; member
77 unsigned char *vtmp = hash->vtmp; in hash_df() local
113 if (!EVP_DigestFinal(ctx, vtmp, NULL)) in hash_df()
115 memcpy(out, vtmp, outlen); in hash_df()
116 OPENSSL_cleanse(vtmp, hash->blocklen); in hash_df()
187 && EVP_DigestFinal(ctx, hash->vtmp, NULL) in add_hash_to_v()
188 && add_bytes(drbg, hash->V, hash->vtmp, hash->blocklen); in add_hash_to_v()
216 memcpy(hash->vtmp, hash->V, drbg->seedlen); in hash_gen()
220 || !EVP_DigestUpdate(hash->ctx, hash->vtmp, drbg->seedlen)) in hash_gen()
224 if (!EVP_DigestFinal(hash->ctx, hash->vtmp, NULL)) in hash_gen()
226 memcpy(out, hash->vtmp, outlen); in hash_gen()
236 add_bytes(drbg, hash->vtmp, &one, 1); in hash_gen()
379 OPENSSL_cleanse(hash->vtmp, sizeof(hash->vtmp)); in drbg_hash_uninstantiate()
410 PROV_DRBG_VERIFY_ZEROIZATION(hash->vtmp); in drbg_hash_verify_zeroization()