You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
317 B
15 lines
317 B
/* |
|
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef MBEDTLS_INIT_H |
|
#define MBEDTLS_INIT_H |
|
|
|
/* This should be called by platforms that do not wish to |
|
* have mbedtls initialised during kernel startup |
|
*/ |
|
int mbedtls_init(void); |
|
|
|
#endif /* MBEDTLS_INIT_H */
|
|
|