Files
StackChan/firmware/main/hal/utils/secret_logic/secret_logic.h
T
2026-03-25 11:11:14 +08:00

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