| 242 | }; |
| 243 | |
| 244 | IConfigEntry* CryptKeyHolder::getEntry(CheckStatusWrapper* status, const char* entryName) |
| 245 | { |
| 246 | IConfig* def = config->getDefaultConfig(status); |
| 247 | if (status->getState() & Firebird::IStatus::STATE_ERRORS) |
| 248 | return NULL; |
| 249 | |
| 250 | IConfigEntry* confEntry = def->find(status, entryName); |
| 251 | def->release(); |
| 252 | if (status->getState() & Firebird::IStatus::STATE_ERRORS) |
| 253 | return NULL; |
| 254 | |
| 255 | return confEntry; |
| 256 | } |
| 257 | |
| 258 | int CryptKeyHolder::keyCallback(CheckStatusWrapper* status, ICryptKeyCallback* callback) |
| 259 | { |
nothing calls this directly
no test coverage detected