1
#pragma once
2

            
3
// Aws-lc can be utilized as an alternative to boringssl
4
// This file provides API translation from boringssl to aws-lc when Envoy is compiled with aws-lc
5
// As of now, aws-lc is only compiled with Envoy for the ``ppc64le`` platform
6
// More information about aws-lc can be found here: https://github.com/aws/aws-lc
7
// This file should be included wherever the following identifiers are invoked by Envoy
8

            
9
namespace Envoy {
10

            
11
#ifdef OPENSSL_IS_AWSLC
12
#define sk_X509_NAME_find sk_X509_NAME_find_awslc
13
#endif
14

            
15
} // namespace Envoy