/* * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef PB_CRYPTO_PROVIDER_SERIALIZER_H #define PB_CRYPTO_PROVIDER_SERIALIZER_H #include #ifdef __cplusplus extern "C" { #endif /* * Singleton method to provide access to the Protobuf serializer * for the crypto service provider. */ const struct crypto_provider_serializer *pb_crypto_provider_serializer_instance(void); #ifdef __cplusplus } /* extern "C" */ #endif #endif /* PB_CRYPTO_PROVIDER_SERIALIZER_H */