blob: 7e5779425afb5616fb9d5468f5d186d6e4515f11 [file] [log] [blame]
// Copyright 2018 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 SERVICES_NETWORK_SSL_CONFIG_TYPE_CONVERTER_H_
#define SERVICES_NETWORK_SSL_CONFIG_TYPE_CONVERTER_H_
#include "net/cert/cert_verifier.h"
#include "net/ssl/ssl_config_service.h"
#include "services/network/public/mojom/ssl_config.mojom.h"
namespace mojo {
int MojoSSLVersionToNetSSLVersion(network::mojom::SSLVersion mojo_version);
// Converts a net::SSLContextConfig to network::mojom::SSLConfigPtr. Tested in
// SSLConfigServiceMojo's unittests.
net::SSLContextConfig MojoSSLConfigToSSLContextConfig(
const network::mojom::SSLConfigPtr& mojo_config);
// Converts a network::mojom::SSLConfigPtr to a net::CertVerifier::Config.
// Tested in SSLConfigServiceMojo's unittests.
net::CertVerifier::Config MojoSSLConfigToCertVerifierConfig(
const network::mojom::SSLConfigPtr& mojo_config);
} // namespace mojo
#endif // SERVICES_NETWORK_SSL_CONFIG_TYPE_CONVERTER_H_