HomeSort by relevance Sort by last modified time
    Searched refs:hs_buf (Results 1 - 5 of 5) sorted by null

  /external/boringssl/src/ssl/
s3_both.cc 354 if (!BUF_MEM_reserve(ssl->s3->hs_buf.get(), max_v3_client_hello) ||
355 !CBB_init_fixed(client_hello.get(), (uint8_t *)ssl->s3->hs_buf->data,
356 ssl->s3->hs_buf->max) ||
389 !CBB_finish(client_hello.get(), NULL, &ssl->s3->hs_buf->length)) {
401 if (!ssl->s3->hs_buf) {
408 CBS_init(&cbs, reinterpret_cast<const uint8_t *>(ssl->s3->hs_buf->data),
409 ssl->s3->hs_buf->length);
421 CBS_init(&out->raw, reinterpret_cast<const uint8_t *>(ssl->s3->hs_buf->data),
471 return ssl->s3->hs_buf && ssl->s3->hs_buf->length > msg_len
    [all...]
handoff.cc 41 reinterpret_cast<uint8_t *>(s3->hs_buf->data),
42 s3->hs_buf->length) ||
75 CBS transcript, hs_buf; local
77 !CBS_get_asn1(&seq, &hs_buf, CBS_ASN1_OCTETSTRING)) {
87 s3->hs_buf.reset(BUF_MEM_new());
88 if (!s3->hs_buf ||
89 !BUF_MEM_append(s3->hs_buf.get(), CBS_data(&hs_buf), CBS_len(&hs_buf))) {
tls_method.cc 74 // During the handshake, |hs_buf| is retained. Release if it there is no
79 if (ssl->s3->hs_buf && ssl->s3->hs_buf->length == 0) {
80 ssl->s3->hs_buf.reset();
s3_pkt.cc 316 if (!ssl->s3->hs_buf) {
317 ssl->s3->hs_buf.reset(BUF_MEM_new());
319 if (!ssl->s3->hs_buf ||
320 !BUF_MEM_append(ssl->s3->hs_buf.get(), body.data(), body.size())) {
internal.h 2303 UniquePtr<BUF_MEM> hs_buf; member in struct:bssl::SSL3_STATE
    [all...]

Completed in 260 milliseconds