Files
archery/cpp_ext/decrypt_ota_file.hpp

7 lines
152 B
C++
Raw Normal View History

2026-01-24 15:50:25 +08:00
#pragma once
2026-01-24 15:45:32 +08:00
2026-01-24 15:50:25 +08:00
#include <string>
2026-01-24 15:45:32 +08:00
2026-01-24 15:50:25 +08:00
namespace netcore{
bool decrypt_ota_file_impl(const std::string& input_path, const std::string& output_zip_path);
2026-01-24 15:45:32 +08:00
}