| Malik Akbar Hashemi Rafsanjani | 4d7b5dd | 2025-02-26 13:14:30 -0800 | [diff] [blame] | 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 |  | 
| Malik Akbar Hashemi Rafsanjani | 4d7b5dd | 2025-02-26 13:14:30 -0800 | [diff] [blame] | 14 | std::string getUsernameFromCert(X509* cert); | 
|  | 15 |  | 
|  | 16 | bool isUPNMatch(std::string_view upn, std::string_view hostname); |