• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  Copyright 2014-2022 The GmSSL Project. All Rights Reserved.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the License); you may
5  *  not use this file except in compliance with the License.
6  *
7  *  http://www.apache.org/licenses/LICENSE-2.0
8  */
9 
10 
11 
12 #ifndef GMSSL_VERSION_H
13 #define GMSSL_VERSION_H
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 /*
20 Version Public API
21 
22 	gmssl_version_num
23 	gmssl_version_str
24 */
25 
26 #define GMSSL_VERSION_NUM	30000
27 #define GMSSL_VERSION_STR	"GmSSL 3.0.0"
28 
29 int gmssl_version_num(void);
30 const char *gmssl_version_str(void);
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 #endif
36