1 // SPDX-License-Identifier: BSD-2-Clause 2 /* 3 * Copyright (C) 2018, ARM Limited 4 * Copyright (C) 2019, Linaro Limited 5 */ 6 7 #include <crypto/crypto.h> 8 #include <tomcrypt_init.h> 9 crypto_init(void)10TEE_Result crypto_init(void) 11 { 12 tomcrypt_init(); 13 14 return TEE_SUCCESS; 15 } 16