| 259 | } |
| 260 | |
| 261 | bool CryptoModule::hasSessionFor(const std::string &targetDeviceId) { |
| 262 | return (this->sessions.find(targetDeviceId) != this->sessions.end()); |
| 263 | } |
| 264 | |
| 265 | std::shared_ptr<Session> |
| 266 | CryptoModule::getSessionByDeviceId(const std::string &deviceId) { |
no test coverage detected