| 1013 | } |
| 1014 | |
| 1015 | void RouterInfo::Encrypt (const uint8_t * data, uint8_t * encrypted) const |
| 1016 | { |
| 1017 | auto encryptor = m_RouterIdentity->CreateEncryptor (nullptr); |
| 1018 | if (encryptor) |
| 1019 | encryptor->Encrypt (data, encrypted); |
| 1020 | } |
| 1021 | |
| 1022 | bool RouterInfo::IsEligibleFloodfill () const |
| 1023 | { |
nothing calls this directly
no test coverage detected