Select one of the symbols to view example projects that use it.
 
Outline
#define MBEDTLS_ENTROPY_POLL_H
#include "mbedtls/build_info.h"
#include <stddef.h>
mbedtls_hardware_poll(void *, unsigned char *, size_t, size_t *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesmbedTLSport/include/entropy_poll.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** * Mbedtls entropy_poll.h file * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef MBEDTLS_ENTROPY_POLL_H #define MBEDTLS_ENTROPY_POLL_H #include "mbedtls/build_info.h" #include <stddef.h> #ifdef __cplusplus extern "C" { #endif /** * \brief Entropy poll callback for a hardware source * * * \note This must accept NULL as its first argument. *//* ... */ int mbedtls_hardware_poll( void *data, unsigned char *output, size_t len, size_t *olen ); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* entropy_poll.h */
Details
Show:
from
Types: Columns: