Path: blob/main/crypto/openssl/include/internal/deprecated.h
34879 views
/*1* Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89/*10* This header file should be included by internal code that needs to use APIs11* that have been deprecated for public use, but where those symbols will still12* be available internally. For example the EVP and provider code needs to use13* low level APIs that are otherwise deprecated.14*15* This header *must* be the first OpenSSL header included by a source file.16*/1718#ifndef OSSL_INTERNAL_DEPRECATED_H19# define OSSL_INTERNAL_DEPRECATED_H20# pragma once2122# include <openssl/configuration.h>2324# undef OPENSSL_NO_DEPRECATED25# define OPENSSL_SUPPRESS_DEPRECATED2627# include <openssl/macros.h>2829#endif303132