ESP-IDF
Point
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
Point
Point struct
Syntax
Show:
Summary
Declaration
from
p_256_ecc_pp.h:32
typedef
struct
{
DWORD
x
[
KEY_LENGTH_DWORDS_P256
]
;
DWORD
y
[
KEY_LENGTH_DWORDS_P256
]
;
DWORD
z
[
KEY_LENGTH_DWORDS_P256
]
;
}
Point
;
Fields
Field
Declared as
Point::x
DWORD
[
KEY_LENGTH_DWORDS_P256
]
Point::y
DWORD
[
KEY_LENGTH_DWORDS_P256
]
Point::z
DWORD
[
KEY_LENGTH_DWORDS_P256
]
Related Functions
Found 6 other functions taking a
Point
argument:
Function
ECC_PointMult_Bin_NAF()
p_256_copy_point()
ECC_CheckPointIsInElliCur_P256()
p_256_init_point()
ECC_Double()
ECC_Add()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
{
p_256_ecc_pp.h:32
}
Point
;
p_256_ecc_pp.h:36
Point
public_key
=
{
0
}
;
adapter.c:1865
bt_mesh_pub_key_get()
return
ECC_CheckPointIsInElliCur_P256
(
(
Point
*
)
&
check
)
;
adapter.c:1908
bt_mesh_check_public_key()
Point
peer_pub_key
=
{
0
}
;
adapter.c:1914
bt_mesh_dh_key_gen()
Point
new_pub_key
=
{
0
}
;
adapter.c:1915
bt_mesh_dh_key_gen()
static
void
p_256_init_point
(
Point
*
q
)
p_256_ecc_pp.c:39
p_256_init_point()
p_256_init_point()::q
memset
(
q
,
0
,
sizeof
(
Point
)
)
;
p_256_ecc_pp.c:41
p_256_init_point()
static
void
p_256_copy_point
(
Point
*
q
,
Point
*
p
)
p_256_ecc_pp.c:44
p_256_copy_point()
p_256_copy_point()::q
memcpy
(
q
,
p
,
sizeof
(
Point
)
)
;
p_256_ecc_pp.c:46
p_256_copy_point()
static
void
ECC_Double
(
Point
*
q
,
Point
*
p
,
uint32_t
keyLength
)
p_256_ecc_pp.c:50
ECC_Double()
ECC_Double()::q
static
void
ECC_Add
(
Point
*
r
,
Point
*
p
,
Point
*
q
,
uint32_t
keyLength
)
p_256_ecc_pp.c:96
ECC_Add()
ECC_Add()::r
void
ECC_PointMult_Bin_NAF
(
Point
*
q
,
Point
*
p
,
DWORD
*
n
,
uint32_t
keyLength
)
p_256_ecc_pp.c:195
ECC_PointMult_Bin_NAF()
ECC_PointMult_Bin_NAF()::q
Point
minus_p
;
p_256_ecc_pp.c:200
ECC_PointMult_Bin_NAF()
Point
r
;
p_256_ecc_pp.c:201
ECC_PointMult_Bin_NAF()
bool
ECC_CheckPointIsInElliCur_P256
(
Point
*
p
)
p_256_ecc_pp.c:249
ECC_CheckPointIsInElliCur_P256()
ECC_CheckPointIsInElliCur_P256()::p
}
Point
;
p_256_ecc_pp.h:36
Point
Point
G
;
p_256_ecc_pp.h:53
elliptic_curve_t
elliptic_curve_t::G
void
ECC_PointMult_Bin_NAF
(
Point
*
q
,
Point
*
p
,
DWORD
*
n
,
uint32_t
keyLength
)
;
p_256_ecc_pp.h:68
ECC_PointMult_Bin_NAF()
ECC_PointMult_Bin_NAF()::q
bool
ECC_CheckPointIsInElliCur_P256
(
Point
*
p
)
;
p_256_ecc_pp.h:70
ECC_CheckPointIsInElliCur_P256()
ECC_CheckPointIsInElliCur_P256()::p
if
(
!
ECC_CheckPointIsInElliCur_P256
(
(
Point
*
)
&
p_cb
->
peer_publ_key
)
)
{
smp_act.c:778
smp_process_pairing_public_key()
Point
public_key
;
smp_keys.c:1121
smp_process_private_key()
Point
peer_publ_key
,
new_publ_key
;
smp_keys.c:1164
smp_compute_dhkey()
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
Instance
Scope
Location
Project
elliptic_curve_t::G
elliptic_curve_t
p_256_ecc_pp.h:53
ECC_PointMult_Bin_NAF()::q
ECC_PointMult_Bin_NAF()
p_256_ecc_pp.h:68
ECC_PointMult_Bin_NAF()::p
ECC_PointMult_Bin_NAF()
p_256_ecc_pp.h:68
ECC_CheckPointIsInElliCur_P256()::p
ECC_CheckPointIsInElliCur_P256()
p_256_ecc_pp.h:70
p_256_init_point()::q
p_256_init_point()
p_256_ecc_pp.c:39
p_256_copy_point()::q
p_256_copy_point()
p_256_ecc_pp.c:44
p_256_copy_point()::p
p_256_copy_point()
p_256_ecc_pp.c:44
ECC_Double()::q
ECC_Double()
p_256_ecc_pp.c:50
ECC_Double()::p
ECC_Double()
p_256_ecc_pp.c:50
ECC_Add()::r
ECC_Add()
p_256_ecc_pp.c:96
ECC_Add()::p
ECC_Add()
p_256_ecc_pp.c:96
ECC_Add()::q
ECC_Add()
p_256_ecc_pp.c:96
ECC_PointMult_Bin_NAF()::q
ECC_PointMult_Bin_NAF()
p_256_ecc_pp.c:195
ECC_PointMult_Bin_NAF()::p
ECC_PointMult_Bin_NAF()
p_256_ecc_pp.c:195
ECC_CheckPointIsInElliCur_P256()::p
ECC_CheckPointIsInElliCur_P256()
p_256_ecc_pp.c:249
Lifecycle
from
examples
All items filtered out
All items filtered out