2016-05-18 02:51:34 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:52:47 +08:00
|
|
|
*
|
2016-05-18 02:51:34 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1998-12-21 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-07-27 17:10:36 +08:00
|
|
|
|
2017-06-15 08:34:37 +08:00
|
|
|
#include "buildinf.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-11-15 11:15:45 +08:00
|
|
|
unsigned long OpenSSL_version_num(void)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-10-28 03:11:48 +08:00
|
|
|
return OPENSSL_VERSION_NUMBER;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *OpenSSL_version(int t)
|
|
|
|
{
|
2017-11-28 03:28:15 +08:00
|
|
|
switch (t) {
|
|
|
|
case OPENSSL_VERSION:
|
2015-01-22 11:40:55 +08:00
|
|
|
return OPENSSL_VERSION_TEXT;
|
2017-11-28 03:28:15 +08:00
|
|
|
case OPENSSL_BUILT_ON:
|
2017-10-17 22:04:09 +08:00
|
|
|
return DATE;
|
2017-11-28 03:28:15 +08:00
|
|
|
case OPENSSL_CFLAGS:
|
|
|
|
return compiler_flags;
|
|
|
|
case OPENSSL_PLATFORM:
|
2017-10-17 22:04:09 +08:00
|
|
|
return PLATFORM;
|
2017-11-28 03:28:15 +08:00
|
|
|
case OPENSSL_DIR:
|
2001-01-10 23:15:36 +08:00
|
|
|
#ifdef OPENSSLDIR
|
2015-01-22 11:40:55 +08:00
|
|
|
return "OPENSSLDIR: \"" OPENSSLDIR "\"";
|
2001-01-10 23:15:36 +08:00
|
|
|
#else
|
2015-01-22 11:40:55 +08:00
|
|
|
return "OPENSSLDIR: N/A";
|
2016-02-11 01:51:15 +08:00
|
|
|
#endif
|
2017-11-28 03:28:15 +08:00
|
|
|
case OPENSSL_ENGINES_DIR:
|
2016-02-11 01:51:15 +08:00
|
|
|
#ifdef ENGINESDIR
|
|
|
|
return "ENGINESDIR: \"" ENGINESDIR "\"";
|
|
|
|
#else
|
|
|
|
return "ENGINESDIR: N/A";
|
1998-12-21 18:52:47 +08:00
|
|
|
#endif
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return "not available";
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|