| 122 | } |
| 123 | |
| 124 | FB_BOOLEAN useOnlyOwnKeys(CheckStatusWrapper* status) |
| 125 | { |
| 126 | IConfigEntry* e = getEntry(status, "OnlyOwnKey"); |
| 127 | if (!e) |
| 128 | return FB_TRUE; // safe default |
| 129 | |
| 130 | FB_BOOLEAN rc = e->getBoolValue(); |
| 131 | e->release(); |
| 132 | return rc; |
| 133 | } |
| 134 | |
| 135 | private: |
| 136 | class CallbackInterface : public ICryptKeyCallbackImpl<CallbackInterface, CheckStatusWrapper> |
nothing calls this directly
no test coverage detected