| 8 | namespace crypto { |
| 9 | |
| 10 | BasicCryptoBox::BasicCryptoBox(openmittsu::crypto::KeyPair const& clientLongTermKey, openmittsu::crypto::PublicKey const& serverLongTermKey) : m_clientLongTermKey(clientLongTermKey), m_serverLongTermKey(serverLongTermKey) { |
| 11 | // Intentionally left empty. |
| 12 | } |
| 13 | |
| 14 | BasicCryptoBox::BasicCryptoBox(BasicCryptoBox const& other) : m_clientLongTermKey(other.m_clientLongTermKey), m_serverLongTermKey(other.m_serverLongTermKey) { |
| 15 | // Intentionally left empty. |
nothing calls this directly
no outgoing calls
no test coverage detected