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

  /external/boringssl/src/ssl/
t1_enc.cc 309 auto label = MakeConstSpan(kExtendedMasterSecretLabel,
315 MakeConstSpan(digests, digests_len), {})) {
320 MakeConstSpan(kMasterSecretLabel, sizeof(kMasterSecretLabel) - 1);
356 MakeConstSpan(session->master_key, session->master_key_length);
358 auto label = MakeConstSpan(kLabel, sizeof(kLabel) - 1);
395 MakeConstSpan(ssl->s3->exporter_secret, ssl->s3->exporter_secret_len),
396 MakeConstSpan(label, label_len), MakeConstSpan(context, context_len));
426 MakeConstSpan(session->master_key, session->master_key_length),
427 MakeConstSpan(label, label_len), seed, {})
    [all...]
span_test.cc 70 TEST(SpanTest, MakeConstSpan) {
72 TestConstCtor(MakeConstSpan(v), v.data(), v.size());
73 TestConstCtor(MakeConstSpan(v.data(), v.size()), v.data(), v.size());
ssl_transcript.cc 226 !Update(MakeConstSpan(old_hash, hash_len))) {
378 ? MakeConstSpan(kServerLabel, sizeof(kServerLabel) - 1)
379 : MakeConstSpan(kClientLabel, sizeof(kClientLabel) - 1);
389 MakeConstSpan(session->master_key, session->master_key_length),
390 label, MakeConstSpan(digests, digests_len), {})) {
tls13_enc.cc 175 session->cipher, MakeConstSpan(key, key_len),
176 Span<const uint8_t>(), MakeConstSpan(iv, iv_len));
t1_lib.cc 297 return MakeConstSpan(ssl->supported_group_list,
471 sigalgs = MakeConstSpan(ssl->ctx->verify_sigalgs,
    [all...]
ssl_aead_ctx.cc 88 enc_key = MakeConstSpan(merged_key,
tls13_server.cc 399 MakeConstSpan(session->early_alpn, session->early_alpn_len)) {
724 MakeConstSpan(hs->expected_client_finished, hs->hash_len)) ||
    [all...]
tls13_client.cc 432 MakeConstSpan(hs->early_session->early_alpn,
internal.h 539 return MakeConstSpan(reinterpret_cast<const uint8_t *>(buffer_->data),
    [all...]
  /external/boringssl/src/include/openssl/
span.h 86 // You can also use the |MakeSpan| and |MakeConstSpan| factory methods to
176 Span<const T> MakeConstSpan(T *ptr, size_t size) {
181 auto MakeConstSpan(const C &c) -> decltype(MakeConstSpan(c.data(), c.size())) {
182 return MakeConstSpan(c.data(), c.size());
bytestring.h 48 return bssl::MakeConstSpan(data, len);

Completed in 410 milliseconds