summaryrefslogtreecommitdiff
path: root/chromium/net/ssl/cert_compression.h
blob: 32d1a1a3071da3804dbf2481dd0f423e662fe8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_SSL_CERT_COMPRESSION_H_
#define NET_SSL_CERT_COMPRESSION_H_

#include "third_party/boringssl/src/include/openssl/base.h"

namespace net {

// Configures certificate compression callbacks on an SSL context.  The
// availability of individual algorithms may depend on the parameters with
// which the network stack is compiled.
void ConfigureCertificateCompression(SSL_CTX* ctx);

}  // namespace net

#endif  // NET_SSL_CERT_COMPRESSION_H_