xref: /aosp_15_r20/external/cronet/net/ssl/cert_compression.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2020 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef NET_SSL_CERT_COMPRESSION_H_
6 #define NET_SSL_CERT_COMPRESSION_H_
7 
8 #include "third_party/boringssl/src/include/openssl/base.h"
9 
10 namespace net {
11 
12 // Configures certificate compression callbacks on an SSL context.  The
13 // availability of individual algorithms may depend on the parameters with
14 // which the network stack is compiled.
15 void ConfigureCertificateCompression(SSL_CTX* ctx);
16 
17 }  // namespace net
18 
19 #endif  // NET_SSL_CERT_COMPRESSION_H_
20