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
|
|
|
|
2017-06-15 00:34:37 +00:00
|
|
|
#include "buildinf.h"
|
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)
|
|
|
|
{
|
2017-11-27 19:28:15 +00:00
|
|
|
switch (t) {
|
|
|
|
case OPENSSL_VERSION:
|
2015-01-22 03:40:55 +00:00
|
|
|
return OPENSSL_VERSION_TEXT;
|
2017-11-27 19:28:15 +00:00
|
|
|
case OPENSSL_BUILT_ON:
|
2017-10-17 14:04:09 +00:00
|
|
|
return DATE;
|
2017-11-27 19:28:15 +00:00
|
|
|
case OPENSSL_CFLAGS:
|
|
|
|
return compiler_flags;
|
|
|
|
case OPENSSL_PLATFORM:
|
2017-10-17 14:04:09 +00:00
|
|
|
return PLATFORM;
|
2017-11-27 19:28:15 +00:00
|
|
|
case 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
|
2017-11-27 19:28:15 +00:00
|
|
|
case OPENSSL_ENGINES_DIR:
|
2016-02-10 17:51:15 +00:00
|
|
|
#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
|
|
|
}
|
2017-10-17 14:04:09 +00:00
|
|
|
return "not available";
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|