xref: /optee_os/lib/libmbedtls/core/tomcrypt.c (revision 5a913ee74d3c71af2a2860ce8a4e7aeab2916f9b)
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 
10 TEE_Result crypto_init(void)
11 {
12 	tomcrypt_init();
13 
14 	return TEE_SUCCESS;
15 }
16