mbedTLS
FN_OID_GET_OID_BY_ATTR1
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
mbedTLS
FN_OID_GET_OID_BY_ATTR1
FN_OID_GET_OID_BY_ATTR1 macro
Syntax
Show:
Summary
Declaration
from
oid.c:122
#define
FN_OID_GET_OID_BY_ATTR1
(
FN_NAME
,
TYPE_T
,
LIST
,
ATTR1_TYPE
,
ATTR1
)
\
int
FN_NAME
(
ATTR1_TYPE
ATTR1
,
const
char
*
*
oid
,
size_t
*
olen
)
\
{
\
const
TYPE_T
*
cur
=
(
LIST
)
;
\
while
(
cur
->
descriptor
.
asn1
!=
NULL
)
{
\
if
(
cur
->
ATTR1
==
(
ATTR1
)
)
{
\
*
oid
=
cur
->
descriptor
.
asn1
;
\
*
olen
=
cur
->
descriptor
.
asn1_len
;
\
return
(
0
)
;
\
}
\
cur
++
;
\
}
\
return
(
MBEDTLS_ERR_OID_NOT_FOUND
)
;
\
}
Arguments
Argument
FN_NAME
TYPE_T
LIST
ATTR1_TYPE
ATTR1
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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