mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-28 11:27:59 +00:00
17 lines
337 B
C++
17 lines
337 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#pragma once
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
namespace secret_logic {
|
|
|
|
std::string get_server_url();
|
|
std::string generate_auth_token();
|
|
std::string generate_handshake_token(std::string_view data);
|
|
|
|
} // namespace secret_logic
|