mbedTLS
PSA_ALG_IS_ANY_HKDF
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading (2/5)...
Files
loading (3/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
mbedTLS
PSA_ALG_IS_ANY_HKDF
PSA_ALG_IS_ANY_HKDF macro
Whether the specified algorithm is an HKDF or HKDF-Extract or HKDF-Expand algorithm.
Syntax
Show:
Summary
Declaration
from
crypto_values.h:1939
#define
PSA_ALG_IS_ANY_HKDF
(
alg
)
\
(
(
(
alg
)
&
~
PSA_ALG_HASH_MASK
)
==
PSA_ALG_HKDF_BASE
||
\
(
(
alg
)
&
~
PSA_ALG_HASH_MASK
)
==
PSA_ALG_HKDF_EXTRACT_BASE
||
\
(
(
alg
)
&
~
PSA_ALG_HASH_MASK
)
==
PSA_ALG_HKDF_EXPAND_BASE
)
Arguments
Argument
Description
alg
An algorithm identifier (value of type #psa_algorithm_t).
Return value
1 if \c alg is any HKDF type algorithm, 0 otherwise. This macro may return either 0 or 1 if \c alg is not a supported key derivation algorithm identifier.
Examples
References
from
examples
Code
Location
#define
PSA_ALG_IS_ANY_HKDF
(
alg
)
\
crypto_values.h:1939
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