squawk/qomemo/signal/context.cpp

23 lines
405 B
C++
Raw Normal View History

/*
* Created by victoria on 2021-05-13.
*/
#include "context.h"
2021-07-22 17:45:39 +00:00
using namespace Signal;
2021-07-22 17:45:39 +00:00
Context::Context() {}
Context::~Context() {}
std::unique_ptr<Crypto::ECKeyPair> Context::generateCurveKeyPair() {
auto result = std::unique_ptr<Crypto::ECKeyPair>();
// TODO
return result;
}
signal_context *Context::temporaryGetContextUnsafeForRawAccessThatNeedsToBeWrapped() {
return ctx;
}