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