mbedTLS
mbedtls_ecp_keypair::Q
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_ecp_keypair::Q
mbedtls_ecp_keypair::Q field
Syntax
Show:
Summary
Declaration
from
ecp.h:431
mbedtls_ecp_point
MBEDTLS_PRIVATE
(
Q
;
Examples
References
from
examples
Code
Location
Referrer
mbedtls_ecp_point
MBEDTLS_PRIVATE
(
Q
)
;
/*!< our public value */
ecp.h:431
return
mbedtls_ecp_copy
(
&
ctx
->
Qp
,
&
key
->
Q
)
;
ecdh.c:426
ecdh_get_params_internal()
if
(
(
ret
=
mbedtls_ecp_copy
(
&
ctx
->
Q
,
&
key
->
Q
)
)
!=
0
||
ecdh.c:434
ecdh_get_params_internal()
&
ctx
->
Q
,
&
r
,
&
s
,
rs_ctx
)
)
!=
0
)
{
ecdsa.c:753
mbedtls_ecdsa_read_signature_restartable()
&
ctx
->
Q
,
f_rng
,
p_rng
)
;
ecdsa.c:786
mbedtls_ecdsa_genkey()
(
ret
=
mbedtls_ecp_copy
(
&
ctx
->
Q
,
&
key
->
Q
)
)
!=
0
)
{
ecdsa.c:798
mbedtls_ecdsa_from_keypair()
mbedtls_ecp_point_init
(
&
key
->
Q
)
;
ecp.c:538
mbedtls_ecp_keypair_init()
mbedtls_ecp_point_free
(
&
key
->
Q
)
;
ecp.c:611
mbedtls_ecp_keypair_free()
return
mbedtls_ecp_gen_keypair
(
&
key
->
grp
,
&
key
->
d
,
&
key
->
Q
,
f_rng
,
p_rng
)
;
ecp.c:3228
mbedtls_ecp_gen_key()
return
mbedtls_ecp_copy
(
&
key
->
Q
,
Q
)
;
ecp.c:3247
mbedtls_ecp_set_public_key()
return
mbedtls_ecp_point_write_binary
(
&
key
->
grp
,
&
key
->
Q
,
ecp.c:3408
mbedtls_ecp_write_public_key()
mbedtls_mpi_cmp_mpi
(
&
pub
->
Q
.
X
,
&
prv
->
Q
.
X
)
||
ecp.c:3426
mbedtls_ecp_check_pub_priv()
mbedtls_mpi_cmp_mpi
(
&
pub
->
Q
.
Y
,
&
prv
->
Q
.
Y
)
||
ecp.c:3427
mbedtls_ecp_check_pub_priv()
mbedtls_mpi_cmp_mpi
(
&
pub
->
Q
.
Z
,
&
prv
->
Q
.
Z
)
)
{
ecp.c:3428
mbedtls_ecp_check_pub_priv()
if
(
mbedtls_mpi_cmp_mpi
(
&
Q
.
X
,
&
prv
->
Q
.
X
)
||
ecp.c:3441
mbedtls_ecp_check_pub_priv()
mbedtls_mpi_cmp_mpi
(
&
Q
.
Y
,
&
prv
->
Q
.
Y
)
||
ecp.c:3442
mbedtls_ecp_check_pub_priv()
mbedtls_mpi_cmp_mpi
(
&
Q
.
Z
,
&
prv
->
Q
.
Z
)
)
{
ecp.c:3443
mbedtls_ecp_check_pub_priv()
return
mbedtls_ecp_mul
(
&
key
->
grp
,
&
key
->
Q
,
&
key
->
d
,
&
key
->
grp
.
G
,
ecp.c:3459
mbedtls_ecp_keypair_calc_public()
if
(
Q
!=
NULL
&&
(
ret
=
mbedtls_ecp_copy
(
Q
,
&
key
->
Q
)
)
!=
0
)
{
ecp.c:3486
mbedtls_ecp_export()
return
mbedtls_ecp_mul
(
&
eck
->
grp
,
&
eck
->
Q
,
&
eck
->
d
,
&
eck
->
grp
.
G
,
f_rng
,
p_rng
)
;
pk_ecc.c:140
mbedtls_pk_ecc_set_pubkey_from_prv()
ret
=
mbedtls_ecp_point_read_binary
(
&
ec_key
->
grp
,
&
ec_key
->
Q
,
pub
,
pub_len
)
;
pk_ecc.c:246
mbedtls_pk_ecc_set_pubkey()
return
mbedtls_ecp_check_pubkey
(
&
ec_key
->
grp
,
&
ec_key
->
Q
)
;
pk_ecc.c:250
mbedtls_pk_ecc_set_pubkey()
items
->
value
=
&
(
ecp
->
Q
)
;
pk_wrap.c:1109
eckey_debug()
if
(
(
ret
=
mbedtls_ecp_point_write_binary
(
&
ec
->
grp
,
&
ec
->
Q
,
pkwrite.c:142
pk_write_ec_pubkey()
mbedtls_ecp_point_read_binary
(
&
ecp
->
grp
,
&
ecp
->
Q
,
psa_crypto_ecp.c:163
mbedtls_psa_ecp_load_representation()
mbedtls_ecp_check_pubkey
(
&
ecp
->
grp
,
&
ecp
->
Q
)
)
;
psa_crypto_ecp.c:172
mbedtls_psa_ecp_load_representation()
if
(
mbedtls_ecp_is_zero
(
&
ecp
->
Q
)
)
{
psa_crypto_ecp.c:261
mbedtls_psa_ecp_export_key()
mbedtls_ecp_mul
(
&
ecp
->
grp
,
&
ecp
->
Q
,
&
ecp
->
d
,
&
ecp
->
grp
.
G
,
psa_crypto_ecp.c:264
mbedtls_psa_ecp_export_key()
mbedtls_ecp_point_write_binary
(
&
ecp
->
grp
,
&
ecp
->
Q
,
psa_crypto_ecp.c:273
mbedtls_psa_ecp_export_key()
if
(
mbedtls_ecp_is_zero
(
&
ecp
->
Q
)
)
{
psa_crypto_ecp.c:441
mbedtls_psa_ecp_load_public_part()
ret
=
mbedtls_ecp_mul
(
&
ecp
->
grp
,
&
ecp
->
Q
,
psa_crypto_ecp.c:442
mbedtls_psa_ecp_load_public_part()
hash_length
,
&
ecp
->
Q
,
psa_crypto_ecp.c:502
mbedtls_psa_ecdsa_verify_hash()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
mbedtls_ecp_keypair::Q
is read by 2 functions:
All items filtered out
mbedtls_ecp_keypair::Q
mbedtls_ecp_check_pub_priv()
eckey_debug()
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