| 38 | } |
| 39 | |
| 40 | bool HidingSigningProvider::GetKey(const CKeyID& keyid, CKey& key) const |
| 41 | { |
| 42 | if (m_hide_secret) return false; |
| 43 | return m_provider->GetKey(keyid, key); |
| 44 | } |
| 45 | |
| 46 | bool HidingSigningProvider::GetKeyOrigin(const CKeyID& keyid, KeyOriginInfo& info) const |
| 47 | { |
no test coverage detected