blob: 32d1a1a3071da3804dbf2481dd0f423e662fe8a6 [file] [log] [blame]
// 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_