xref: /openbmc/bmcweb/http/mutual_tls_private.hpp (revision a08c3de2e9a788addf7c71fc2db1912e39a85d3b)
1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 #pragma once
4 
5 #include <openssl/crypto.h>
6 
7 #include <string>
8 #include <string_view>
9 
10 std::string getCommonNameFromCert(X509* cert);
11 
12 std::string getUPNFromCert(X509* peerCert, std::string_view hostname);
13 
14 std::string getUsernameFromCert(X509* cert);
15 
16 bool isUPNMatch(std::string_view upn, std::string_view hostname);
17