Searched defs:hdatalen (Results 1 - 5 of 5) sorted by last modified time

/external/openssl/ssl/
H A Ds3_clnt.c3249 long hdatalen = 0; local
3273 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer,
3275 if (hdatalen <= 0 || !tls12_get_sigandhash(p, pkey, md))
3287 || !EVP_SignUpdate(&mctx, hdata, hdatalen)
H A Ds3_enc.c592 long hdatalen; local
599 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer,&hdata);
600 if (hdatalen <= 0)
620 EVP_DigestUpdate(s->s3->handshake_dgst[i],hdata,hdatalen);
H A Ds3_srvr.c3137 long hdatalen = 0; local
3139 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3140 if (hdatalen <= 0)
3151 || !EVP_VerifyUpdate(&mctx, hdata, hdatalen))
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_both.c509 size_t hdatalen; local
513 if (!BIO_mem_contents(s->s3->handshake_buffer, &hdata, &hdatalen))
520 || !EVP_DigestUpdate(&mctx, hdata, hdatalen)
H A Ds3_enc.c521 size_t hdatalen; local
527 if (!BIO_mem_contents(s->s3->handshake_buffer, &hdata, &hdatalen))
540 EVP_DigestUpdate(s->s3->handshake_dgst[i],hdata,hdatalen);

Completed in 113 milliseconds