Added dummy files for credential data of passkeys.

This commit is contained in:
23rd
2025-11-30 06:52:38 +03:00
committed by John Preston
parent 4829c6d028
commit a31e384409
3 changed files with 95 additions and 0 deletions
@@ -0,0 +1,31 @@
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "data/data_passkey_deserialize.h"
namespace Data::Passkey {
std::optional<RegisterData> DeserializeRegisterData(
const QByteArray &jsonData) {
return std::nullopt;
}
std::string SerializeClientDataCreate(const QByteArray &challenge) {
return std::string();
}
std::string SerializeClientDataGet(const QByteArray &challenge) {
return std::string();
}
std::optional<LoginData> DeserializeLoginData(
const QByteArray &jsonData) {
return std::nullopt;
}
} // namespace Data::Passkey