Nagram/TMessagesProj/jni/voip/tgcalls/v2/SignalingEncryption.h

24 lines
569 B
C
Raw Normal View History

2021-06-25 00:43:10 +00:00
#ifndef TGCALLS_SIGNALING_ENCRYPTION_H
#define TGCALLS_SIGNALING_ENCRYPTION_H
#include "Instance.h"
#include "EncryptedConnection.h"
namespace tgcalls {
class SignalingEncryption {
public:
SignalingEncryption(EncryptionKey const &encryptionKey);
~SignalingEncryption();
absl::optional<rtc::CopyOnWriteBuffer> encryptOutgoing(std::vector<uint8_t> const &data);
absl::optional<rtc::CopyOnWriteBuffer> decryptIncoming(std::vector<uint8_t> const &data);
private:
std::unique_ptr<EncryptedConnection> _connection;
};
} // namespace tgcalls
#endif