-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
files.c: remove incomptabile #define OSSL_DEPRECATEDIN_3_1
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/** | ||
/** | ||
* @file files.c | ||
* | ||
* | ||
* @brief Private key, certificate, CSR (PKCS#10), and CRL file handling | ||
* | ||
* @copyright Copyright (c) Siemens Mobility GmbH, 2021 | ||
* | ||
* @author David von Oheimb <[email protected]> | ||
* | ||
* This work is licensed under the terms of the Apache Software License | ||
* This work is licensed under the terms of the Apache Software License | ||
* 2.0. See the COPYING file in the top-level directory. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#define OPENSSL_NO_RC4 /* prevent errors on undeclared FORMAT_MSBLOB and FORMAT_PVK */ | ||
#define OSSL_DEPRECATEDIN_3_1 | ||
//#define OSSL_DEPRECATEDIN_3_1 | ||
#include <openssl/pem.h> | ||
#include <openssl/pkcs12.h> | ||
#ifndef OPENSSL_NO_ENGINE | ||
|