1 /* 2 * Copyright (c) 2019-2020, Arm Limited. All rights reserved. 3 * Copyright 2020 NXP. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 * 7 */ 8 9 #include "crypto_hw.h" 10 11 12 /* 13 * \brief Initialize a crypto accelerator 14 */ crypto_hw_accelerator_init(void)15int crypto_hw_accelerator_init(void) 16 { 17 return 0; 18 } 19 20 /* 21 * \brief Deallocate a crypto accelerator 22 */ crypto_hw_accelerator_finish(void)23int crypto_hw_accelerator_finish(void) 24 { 25 return 0; 26 } 27 28 29