mbedTLS
MBEDTLS_CTR_DRBG_KEYSIZE
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
STM32 Libraries and Samples
mbedTLS
MBEDTLS_CTR_DRBG_KEYSIZE
MBEDTLS_CTR_DRBG_KEYSIZE macro
The key size used by the cipher (compile-time choice: 256 bits).
Syntax
Show:
Summary
Declaration
from
ctr_drbg.h:61
#define
MBEDTLS_CTR_DRBG_KEYSIZE
32
Examples
References
from
examples
Code
Location
#define
MBEDTLS_CTR_DRBG_KEYSIZE
32
/**< The key size used by the cipher (compile-time choice: 256 bits). */
ctr_drbg.h:61
unsigned
char
key
[
MBEDTLS_CTR_DRBG_KEYSIZE
]
;
ctr_drbg.c:90
memset
(
key
,
0
,
MBEDTLS_CTR_DRBG_KEYSIZE
)
;
ctr_drbg.c:92
unsigned
char
key
[
MBEDTLS_CTR_DRBG_KEYSIZE
]
;
ctr_drbg.c:159
for
(
i
=
0
;
i
<
MBEDTLS_CTR_DRBG_KEYSIZE
;
i
++
)
ctr_drbg.c:193
iv
=
tmp
+
MBEDTLS_CTR_DRBG_KEYSIZE
;
ctr_drbg.c:239
memcpy
(
ctx
->
counter
,
tmp
+
MBEDTLS_CTR_DRBG_KEYSIZE
,
MBEDTLS_CTR_DRBG_BLOCKSIZE
)
;
ctr_drbg.c:315
#define
MBEDTLS_CTR_DRBG_KEYBITS
(
MBEDTLS_CTR_DRBG_KEYSIZE
*
8
)
/**< The key size for the DRBG operation, in bits. */
ctr_drbg.h:64
#define
MBEDTLS_CTR_DRBG_SEEDLEN
(
MBEDTLS_CTR_DRBG_KEYSIZE
+
MBEDTLS_CTR_DRBG_BLOCKSIZE
)
/**< The seed length, calculated as (counter + AES key). */
ctr_drbg.h:65
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