| 346 | WebAuthChallenge::~WebAuthChallenge() = default; |
| 347 | |
| 348 | WebAuthChallenge::Source WebAuthChallenge::GetSource() const |
| 349 | { |
| 350 | DEATH_ASSERT(_impl != nullptr, "Cannot be called with an uninitialized object", Source::Server); |
| 351 | |
| 352 | return _impl->GetSource(); |
| 353 | } |
| 354 | |
| 355 | void WebAuthChallenge::SetCredentials(const WebCredentials& cred) |
| 356 | { |
no test coverage detected