2016-05-17 18:51:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 18:51:34 +00: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 10:52:47 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-07-27 09:10:36 +00:00
|
|
|
|
2003-12-27 14:40:17 +00:00
|
|
|
#ifndef NO_WINDOWS_BRAINDEATH
|
2015-01-22 03:40:55 +00:00
|
|
|
# include "buildinf.h"
|
2003-12-27 14:40:17 +00:00
|
|
|
#endif
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-11-15 03:15:45 +00:00
|
|
|
unsigned long OpenSSL_version_num(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-10-27 19:11:48 +00:00
|
|
|
return OPENSSL_VERSION_NUMBER;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *OpenSSL_version(int t)
|
|
|
|
{
|
|
|
|
if (t == OPENSSL_VERSION)
|
2015-01-22 03:40:55 +00:00
|
|
|
return OPENSSL_VERSION_TEXT;
|
2015-10-27 19:11:48 +00:00
|
|
|
if (t == OPENSSL_BUILT_ON) {
|
1998-12-21 10:52:47 +00:00
|
|
|
#ifdef DATE
|
2015-01-02 11:27:57 +00:00
|
|
|
# ifdef OPENSSL_USE_BUILD_DATE
|
2015-01-22 03:40:55 +00:00
|
|
|
return (DATE);
|
2015-01-02 11:27:57 +00:00
|
|
|
# else
|
2015-01-22 03:40:55 +00:00
|
|
|
return ("built on: reproducible build, date unspecified");
|
2015-01-02 11:27:57 +00:00
|
|
|
# endif
|
1998-12-21 10:52:47 +00:00
|
|
|
#else
|
2015-01-22 03:40:55 +00:00
|
|
|
return ("built on: date not available");
|
1998-12-21 10:52:47 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-10-27 19:11:48 +00:00
|
|
|
if (t == OPENSSL_CFLAGS) {
|
1998-12-21 10:52:47 +00:00
|
|
|
#ifdef CFLAGS
|
2015-01-22 03:40:55 +00:00
|
|
|
return (CFLAGS);
|
1998-12-21 10:52:47 +00:00
|
|
|
#else
|
2015-01-22 03:40:55 +00:00
|
|
|
return ("compiler: information not available");
|
1998-12-21 11:00:56 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-10-27 19:11:48 +00:00
|
|
|
if (t == OPENSSL_PLATFORM) {
|
1998-12-21 11:00:56 +00:00
|
|
|
#ifdef PLATFORM
|
2015-01-22 03:40:55 +00:00
|
|
|
return (PLATFORM);
|
1998-12-21 11:00:56 +00:00
|
|
|
#else
|
2015-01-22 03:40:55 +00:00
|
|
|
return ("platform: information not available");
|
2001-01-10 15:15:36 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-10-27 19:11:48 +00:00
|
|
|
if (t == OPENSSL_DIR) {
|
2001-01-10 15:15:36 +00:00
|
|
|
#ifdef OPENSSLDIR
|
2015-01-22 03:40:55 +00:00
|
|
|
return "OPENSSLDIR: \"" OPENSSLDIR "\"";
|
2001-01-10 15:15:36 +00:00
|
|
|
#else
|
2015-01-22 03:40:55 +00:00
|
|
|
return "OPENSSLDIR: N/A";
|
2016-02-10 17:51:15 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (t == OPENSSL_ENGINES_DIR) {
|
|
|
|
#ifdef ENGINESDIR
|
|
|
|
return "ENGINESDIR: \"" ENGINESDIR "\"";
|
|
|
|
#else
|
|
|
|
return "ENGINESDIR: N/A";
|
1998-12-21 10:52:47 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
return ("not available");
|
|
|
|
}
|