2021-05-12 12:50:52 +00:00
|
|
|
/*
|
|
|
|
* Created by victoria on 2021-05-12.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace QXmpp::Omemo {
|
|
|
|
|
2021-05-13 14:54:37 +00:00
|
|
|
class DeviceKeyStorage {
|
|
|
|
public:
|
|
|
|
static int generateDeviceId();
|
2021-05-12 12:50:52 +00:00
|
|
|
|
2021-05-13 14:54:37 +00:00
|
|
|
explicit DeviceKeyStorage(int deviceId);
|
2021-05-12 12:50:52 +00:00
|
|
|
|
2021-05-13 14:54:37 +00:00
|
|
|
const int deviceId;
|
|
|
|
};
|
2021-05-12 12:50:52 +00:00
|
|
|
|
|
|
|
} // namespace QXmpp::Omemo
|