Lines Matching refs:hash
1353 * ciphersuite as long as the hash is the same.
1757 * need to create the synthetic message hash, we defer that step until now
1930 /* Save the current hash state for when we receive the CertificateVerify */
2567 * elsewhere in OpenSSL. The session ID is set to the SHA256 hash of the
3135 EVP_MD_CTX * hash = NULL;
3142 if ((hash = EVP_MD_CTX_new()) == NULL
3143 || EVP_DigestInit(hash, md) <= 0
3144 || EVP_DigestUpdate(hash, s->s3.client_random, SSL3_RANDOM_SIZE) <= 0
3145 || EVP_DigestUpdate(hash, s->s3.server_random, SSL3_RANDOM_SIZE) <= 0
3146 || EVP_DigestFinal_ex(hash, dgst_buf, &md_len) <= 0) {
3147 EVP_MD_CTX_free(hash);
3152 EVP_MD_CTX_free(hash);