blob: edef8be86d8c3dcfca50c8018271cd08ed991d1e [file] [log] [blame]
// Copyright 2019 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_TEST_KEY_UTIL_H_
#define NET_TEST_KEY_UTIL_H_
#include "base/memory/scoped_refptr.h"
#include "third_party/boringssl/src/include/openssl/base.h"
namespace base {
class FilePath;
}
namespace net {
class SSLPrivateKey;
namespace key_util {
// Loads a PEM-encoded private key file from |filepath| into an EVP_PKEY object.
// Returns the new EVP_PKEY or nullptr on error.
bssl::UniquePtr<EVP_PKEY> LoadEVP_PKEYFromPEM(const base::FilePath& filepath);
// Loads a PEM-encoded private key file into a SSLPrivateKey object.
// |filepath| is the private key file path.
// Returns the new SSLPrivateKey.
scoped_refptr<SSLPrivateKey> LoadPrivateKeyOpenSSL(
const base::FilePath& filepath);
} // namespace key_util
} // namespace net
#endif // NET_TEST_KEY_UTIL_H_