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 #include <gmssl/version.h> 13 gmssl_version_num(void)14int gmssl_version_num(void) 15 { 16 return GMSSL_VERSION_NUM; 17 } 18 gmssl_version_str(void)19const char *gmssl_version_str(void) 20 { 21 return GMSSL_VERSION_STR; 22 } 23