-
BenceJanosSzabo authored
Change-Id: I3e5231fcc257baf804ea8ade2997bf22b62e1472 Signed-off-by:
BenceJanosSzabo <bence.janos.szabo@ericsson.com>
BenceJanosSzabo authoredChange-Id: I3e5231fcc257baf804ea8ade2997bf22b62e1472 Signed-off-by:
BenceJanosSzabo <bence.janos.szabo@ericsson.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
openssl_version.c 840 B
/******************************************************************************
* Copyright (c) 2000-2016 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Szabo, Bence Janos
*
******************************************************************************/
#include "openssl_version.h"
#include <openssl/crypto.h>
// Backward compatibility with older openssl versions
#if OPENSSL_VERSION_NUMBER < 0x10100000L
const char * openssl_version_str(void) {
return SSLeay_version(SSLEAY_VERSION);
}
#else
const char * openssl_version_str(void) {
return OpenSSL_version(OPENSSL_VERSION);
}
#endif