| 33 | } |
| 34 | |
| 35 | bool HidingSigningProvider::GetKey(const CKeyID& keyid, CKey& key) const |
| 36 | { |
| 37 | if (m_hide_secret) return false; |
| 38 | return m_provider->GetKey(keyid, key); |
| 39 | } |
| 40 | |
| 41 | bool HidingSigningProvider::GetKeyOrigin(const CKeyID& keyid, KeyOriginInfo& info) const |
| 42 | { |
no test coverage detected