mbedTLS
mbedtls_x509_crl::next
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
mbedTLS
mbedtls_x509_crl::next
mbedtls_x509_crl::next field
Next element in the linked list of CRL. \p NULL indicates the end of the list. Do not modify this field directly.
Syntax
Show:
Summary
Declaration
from
x509_crl.h:91
struct
mbedtls_x509_crl
*
next
;
Examples
References
from
examples
Code
Location
Referrer
struct
mbedtls_x509_crl
*
next
;
x509_crl.h:91
while
(
crl
->
version
!=
0
&&
crl
->
next
!=
NULL
)
{
x509_crl.c:306
mbedtls_x509_crl_parse_der()
crl
=
crl
->
next
;
x509_crl.c:307
mbedtls_x509_crl_parse_der()
if
(
crl
->
version
!=
0
&&
crl
->
next
==
NULL
)
{
x509_crl.c:310
mbedtls_x509_crl_parse_der()
crl
->
next
=
mbedtls_calloc
(
1
,
sizeof
(
mbedtls_x509_crl
)
)
;
x509_crl.c:311
mbedtls_x509_crl_parse_der()
if
(
crl
->
next
==
NULL
)
{
x509_crl.c:313
mbedtls_x509_crl_parse_der()
mbedtls_x509_crl_init
(
crl
->
next
)
;
x509_crl.c:318
mbedtls_x509_crl_parse_der()
crl
=
crl
->
next
;
x509_crl.c:319
mbedtls_x509_crl_parse_der()
crl_cur
=
crl_cur
->
next
;
x509_crl.c:704
mbedtls_x509_crl_free()
crl_list
=
crl_list
->
next
;
x509_crt.c:2031
x509_crt_verifycrl()
crl_list
=
crl_list
->
next
;
x509_crt.c:2114
x509_crt_verifycrl()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
mbedtls_x509_crl::next
is written by 1 function and is read by 3 functions:
mbedtls_x509_crl_parse_der()
All items filtered out
mbedtls_x509_crl::next
mbedtls_x509_crl_parse_der()
mbedtls_x509_crl_free()
x509_crt_verifycrl()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out