| 176 | } |
| 177 | |
| 178 | PKeyAlgorithm PublicKey::algorithm() const { |
| 179 | auto key = nativeHandle(); |
| 180 | ASSERT(key); |
| 181 | return getPKeyAlgorithm(key); |
| 182 | } |
| 183 | |
| 184 | std::string_view PublicKey::algorithmName() const { |
| 185 | return pkeyAlgorithmName(this->algorithm()); |
no test coverage detected