API参考
载入中...
搜索中...
未找到
app_prime.h
1/*
2* Copyright (c) 2025 Hong Han, Weijia Wang, School of Cyber Science and Technology, Shandong University
3*/
4/*
5 * This file is part of the openHiTLS project.
6 *
7 * openHiTLS is licensed under the Mulan PSL v2.
8 * You can use this software according to the terms and conditions of the Mulan PSL v2.
9 * You may obtain a copy of Mulan PSL v2 at:
10 *
11 * http://license.coscl.org.cn/MulanPSL2
12 *
13 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
14 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
15 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
16 * See the Mulan PSL v2 for more details.
17 */
18#ifndef HITLS_APP_PRIME_H
19#define HITLS_APP_PRIME_H
20
21#include <stdint.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27int32_t HITLS_PrimeMain(int32_t argc, char *argv[]);
28
29#ifdef __cplusplus
30}
31#endif
32#endif