sapling/eden/fs/utils/SSLContext.cpp
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

35 lines
1016 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#include "SSLContext.h"
#include <folly/io/async/SSLContext.h>
#include <folly/io/async/SSLOptions.h>
#include <folly/logging/xlog.h>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include "eden/fs/utils/PathFuncs.h"
namespace facebook {
namespace eden {
std::shared_ptr<folly::SSLContext> buildSSLContext(
std::optional<AbsolutePath> clientCertificate) {
auto sslContext = std::make_shared<folly::SSLContext>();
if (clientCertificate) {
auto path = folly::to<std::string>(clientCertificate.value());
XLOG(DBG2) << "build SSLContext with client certificate: " << path;
sslContext->loadCertificate(path.c_str(), "PEM");
sslContext->loadPrivateKey(path.c_str(), "PEM");
}
folly::ssl::SSLCommonOptions::setClientOptions(*sslContext);
return sslContext;
}
} // namespace eden
} // namespace facebook