// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/crypto/pem_helpers.h" #include <openssl/bytestring.h> #include <openssl/pem.h> #include <openssl/rsa.h> #include <stdio.h> #include <string.h> #include "util/osp_logging.h" #include "util/string_util.h" namespace openscreen { std::vector<std::string> ReadCertificatesFromPemFile( std::string_view filename) { … } bssl::UniquePtr<EVP_PKEY> ReadKeyFromPemFile(std::string_view filename) { … } } // namespace openscreen