MCPcopy Create free account
hub / github.com/blizzard4591/openMittsu / BasicCryptoBox

Method BasicCryptoBox

src/crypto/BasicCryptoBox.cpp:10–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected