| 10360 | } |
| 10361 | |
| 10362 | bool ClntAuthBlock::checkPluginName(PathName& nameToCheck) |
| 10363 | { |
| 10364 | ParsedList parsed(pluginList); |
| 10365 | for (unsigned i = 0; i < parsed.getCount(); ++i) |
| 10366 | { |
| 10367 | if (parsed[i] == nameToCheck) |
| 10368 | { |
| 10369 | return true; |
| 10370 | } |
| 10371 | } |
| 10372 | return false; |
| 10373 | } |
| 10374 | |
| 10375 | ICryptKey* ClntAuthBlock::newKey(CheckStatusWrapper* status) |
| 10376 | { |
no test coverage detected