xref: /openbmc/bmcweb/http/mutual_tls_private.hpp (revision a49436930f9295bb74908dbd002409ee96325ea6)
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